Browse Source

Add `tag` to `ast.Comp_Lit`

gingerBill 3 years ago
parent
commit
cda9fd5271
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/odin/ast/ast.odin

+ 1 - 0
core/odin/ast/ast.odin

@@ -151,6 +151,7 @@ Comp_Lit :: struct {
 	open: tokenizer.Pos,
 	elems: []^Expr,
 	close: tokenizer.Pos,
+	tag: ^Expr,
 }