diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-03 22:02:35 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-03 22:02:35 +0100 |
| commit | 50b4a63fe141d8f2c8a17f61bfde8ce078daae14 (patch) | |
| tree | a1567fd14d64b5e58e4a191b5783059f155be560 | |
| parent | 2cb30280861b0640ad60085dfc24e4cb68912401 (diff) | |
Add `ast.Foreign_Impot_Decl.fullpaths` to walk.odin
| -rw-r--r-- | core/odin/ast/walk.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/odin/ast/walk.odin b/core/odin/ast/walk.odin index 63107a2e2..7304f237c 100644 --- a/core/odin/ast/walk.odin +++ b/core/odin/ast/walk.odin @@ -320,6 +320,7 @@ walk :: proc(v: ^Visitor, node: ^Node) { if n.comment != nil { walk(v, n.comment) } + walk_expr_list(v, n.fullpaths) case ^Proc_Group: walk_expr_list(v, n.args) |