summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.h
diff options
context:
space:
mode:
authorThakee Nathees <thakeenathees@gmail.com>2020-03-09 04:54:12 +0530
committerThakee Nathees <thakeenathees@gmail.com>2020-04-27 19:26:57 +0530
commitcd487201c63c5b99a47971b7bd1b55b483b44ceb (patch)
treed37a23da372d61ca3dd48e99ea75f66cb81cc178 /modules/gdscript/gdscript_parser.h
parent495b28765d03aa9459bc312ebba190ec208979e7 (diff)
downloadredot-engine-cd487201c63c5b99a47971b7bd1b55b483b44ceb.tar.gz
export var type reduce() implemented
Diffstat (limited to 'modules/gdscript/gdscript_parser.h')
-rw-r--r--modules/gdscript/gdscript_parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_parser.h b/modules/gdscript/gdscript_parser.h
index eca5f83f7a..f254352423 100644
--- a/modules/gdscript/gdscript_parser.h
+++ b/modules/gdscript/gdscript_parser.h
@@ -613,6 +613,7 @@ private:
Node *_parse_expression(Node *p_parent, bool p_static, bool p_allow_assign = false, bool p_parsing_constant = false);
Node *_reduce_expression(Node *p_node, bool p_to_const = false);
Node *_parse_and_reduce_expression(Node *p_parent, bool p_static, bool p_reduce_const = false, bool p_allow_assign = false);
+ bool _reduce_export_var_type(Variant &p_value, int p_line = 0);
PatternNode *_parse_pattern(bool p_static);
void _parse_pattern_block(BlockNode *p_block, Vector<PatternBranchNode *> &p_branches, bool p_static);