diff options
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 129f1d41b..9c55bf2f7 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -576,6 +576,16 @@ isize const ast_variant_sizes[] = { #undef AST_KIND }; +struct AstCommonStuff { + AstKind kind; + u32 state_flags; + u32 viral_state_flags; + bool been_handled; + AstFile * file; + Scope * scope; + TypeAndValue tav; +}; + struct Ast { AstKind kind; u32 state_flags; |