From 50b4a63fe141d8f2c8a17f61bfde8ce078daae14 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 3 Jun 2024 22:02:35 +0100 Subject: [PATCH] Add `ast.Foreign_Impot_Decl.fullpaths` to walk.odin --- core/odin/ast/walk.odin | 1 + 1 file changed, 1 insertion(+) 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)