aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_compiler.h
diff options
context:
space:
mode:
authorreduz2015-12-28 19:31:52 -0300
committerreduz2015-12-28 19:32:51 -0300
commit30c12297dc6df7d35df140475c0cec7308aea77a (patch)
treee09c1ed46a6d42bcaab5ff4f3a67749948ff6ff7 /modules/gdscript/gd_compiler.h
parenteecfeb1d7681bf9186bc231e9ee8c5d36f2afcea (diff)
downloadgodot-30c12297dc6df7d35df140475c0cec7308aea77a.tar.gz
godot-30c12297dc6df7d35df140475c0cec7308aea77a.tar.zst
godot-30c12297dc6df7d35df140475c0cec7308aea77a.zip
Diffstat (limited to 'modules/gdscript/gd_compiler.h')
-rw-r--r--modules/gdscript/gd_compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_compiler.h b/modules/gdscript/gd_compiler.h
index bdf4e9816..ea3e7c8b6 100644
--- a/modules/gdscript/gd_compiler.h
+++ b/modules/gdscript/gd_compiler.h
@@ -143,7 +143,7 @@ class GDCompiler {
int _parse_assign_right_expression(CodeGen& codegen,const GDParser::OperatorNode *p_expression, int p_stack_level);
int _parse_expression(CodeGen& codegen,const GDParser::Node *p_expression, int p_stack_level,bool p_root=false,bool p_initializer=false);
Error _parse_block(CodeGen& codegen,const GDParser::BlockNode *p_block,int p_stack_level=0,int p_break_addr=-1,int p_continue_addr=-1);
- Error _parse_function(GDScript *p_script,const GDParser::ClassNode *p_class,const GDParser::FunctionNode *p_func);
+ Error _parse_function(GDScript *p_script,const GDParser::ClassNode *p_class,const GDParser::FunctionNode *p_func,bool p_for_ready=false);
Error _parse_class(GDScript *p_script,GDScript *p_owner,const GDParser::ClassNode *p_class);
int err_line;
int err_column;