From fe9971d379766a4f7d4576495caff9ffaa80cfef Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 26 Mar 2019 20:54:54 +0100 Subject: Synchronize funccall generate. Uses correct func index now --- include/ast.h | 2 ++ include/parser.h | 1 + 2 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/ast.h b/include/ast.h index eaf2352..580ca24 100644 --- a/include/ast.h +++ b/include/ast.h @@ -76,6 +76,8 @@ struct Scope { Buffer/**/ ast_objects; HashMap/*(key=BufferView, value=Ast*)*/ named_objects; Scope *parent; + /* Is null unless the scope is a file scope, in which case this is the parser that owns the scope */ + Parser *parser; }; struct FileScopeReference { diff --git a/include/parser.h b/include/parser.h index a203b7d..0261800 100644 --- a/include/parser.h +++ b/include/parser.h @@ -38,6 +38,7 @@ struct Parser { StructDecl struct_decl; LhsExpr file_decl; Scope *current_scope; + bool has_func_parent; ScopedAllocator *allocator; /* borrowed. Copied from @compiler for faster access to allocator */ amal_compiler *compiler; bool started; -- cgit v1.2.3