Update odin/ast for multi pointers

This commit is contained in:
gingerBill
2021-08-22 11:46:12 +01:00
parent 0decdaed1a
commit 19bf12aa09
4 changed files with 34 additions and 8 deletions
+2
View File
@@ -349,6 +349,8 @@ walk :: proc(v: ^Visitor, node: ^Node) {
walk(v, n.results);
case Pointer_Type:
walk(v, n.elem);
case Multi_Pointer_Type:
walk(v, n.elem);
case Array_Type:
if n.tag != nil {
walk(v, n.tag);