Add extra internal memory analysis

This commit is contained in:
gingerBill
2020-04-06 12:17:54 +01:00
parent d659e679fd
commit d0b913dad1
3 changed files with 47 additions and 1 deletions
+10
View File
@@ -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;