mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: check function and route parameter count (#6761)
This commit is contained in:
@ -260,6 +260,7 @@ pub:
|
||||
receiver Field
|
||||
receiver_pos token.Position
|
||||
is_method bool
|
||||
method_idx int
|
||||
rec_mut bool // is receiver mutable
|
||||
rec_share table.ShareType
|
||||
language table.Language
|
||||
@ -275,6 +276,7 @@ pub mut:
|
||||
stmts []Stmt
|
||||
return_type table.Type
|
||||
comments []Comment // comments *after* the header, but *before* `{`; used for InterfaceDecl
|
||||
source_file &File = 0
|
||||
}
|
||||
|
||||
// break, continue
|
||||
|
Reference in New Issue
Block a user