Update package odin/parser for #soa and #vector

This commit is contained in:
gingerBill
2019-11-27 15:23:54 +00:00
parent 37e3e081c6
commit 71c8a3456e
3 changed files with 22 additions and 4 deletions
+2
View File
@@ -554,6 +554,7 @@ Pointer_Type :: struct {
Array_Type :: struct {
using node: Expr,
open: tokenizer.Pos,
tag: ^Expr,
len: ^Expr, // Ellipsis node for [?]T arrray types, nil for slice types
close: tokenizer.Pos,
elem: ^Expr,
@@ -561,6 +562,7 @@ Array_Type :: struct {
Dynamic_Array_Type :: struct {
using node: Expr,
tag: ^Expr,
open: tokenizer.Pos,
dynamic_pos: tokenizer.Pos,
close: tokenizer.Pos,