mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-17 16:31:25 -07:00
Change how context <- is parsed to remove the need for a look-ahead
This commit is contained in:
+4
-3
@@ -167,9 +167,10 @@ enum FieldFlag {
|
||||
};
|
||||
|
||||
enum StmtAllowFlag {
|
||||
StmtAllowFlag_None = 0,
|
||||
StmtAllowFlag_In = 1<<0,
|
||||
StmtAllowFlag_Label = 1<<1,
|
||||
StmtAllowFlag_None = 0,
|
||||
StmtAllowFlag_In = 1<<0,
|
||||
StmtAllowFlag_Label = 1<<1,
|
||||
StmtAllowFlag_Context = 1<<2,
|
||||
};
|
||||
|
||||
#define AST_NODE_KINDS \
|
||||
|
||||
Reference in New Issue
Block a user