From cda9fd527199a6046b1a442ed634ac282df4d799 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 6 Feb 2022 11:59:12 +0000 Subject: [PATCH] Add `tag` to `ast.Comp_Lit` --- core/odin/ast/ast.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/core/odin/ast/ast.odin b/core/odin/ast/ast.odin index 9db57541b..8eb0def44 100644 --- a/core/odin/ast/ast.odin +++ b/core/odin/ast/ast.odin @@ -151,6 +151,7 @@ Comp_Lit :: struct { open: tokenizer.Pos, elems: []^Expr, close: tokenizer.Pos, + tag: ^Expr, }