mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
@@ -1993,9 +1993,9 @@ fn (t Tree) array_node_attr(nodes []ast.Attr) &Node {
|
||||
return arr
|
||||
}
|
||||
|
||||
fn (t Tree) array_node_scope_struct_field(nodes []ast.ScopeStructField) &Node {
|
||||
fn (t Tree) array_node_scope_struct_field(nodes map[string]ast.ScopeStructField) &Node {
|
||||
mut arr := new_array()
|
||||
for node in nodes {
|
||||
for _, node in nodes {
|
||||
arr.add_item(t.scope_struct_field(node))
|
||||
}
|
||||
return arr
|
||||
|
||||
Reference in New Issue
Block a user