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
+8
View File
@@ -656,6 +656,14 @@ Pointer_Type :: struct {
elem: ^Expr,
}
Multi_Pointer_Type :: struct {
using node: Expr,
open: tokenizer.Pos,
pointer: tokenizer.Pos,
close: tokenizer.Pos,
elem: ^Expr,
}
Array_Type :: struct {
using node: Expr,
open: tokenizer.Pos,