summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.h
diff options
context:
space:
mode:
authorjordi <creptthrust@gmail.com>2023-01-09 08:02:37 -0600
committerjordi <creptthrust@gmail.com>2023-01-19 14:27:57 -0600
commit2e488072d090b7fc790bc7703f262159207839a9 (patch)
treec3789779f38fff81b4d6a2fa31b19c0de98e8dff /modules/gdscript/gdscript_analyzer.h
parentbb08997b8725780670be30afa96354e7c38586fd (diff)
downloadredot-engine-2e488072d090b7fc790bc7703f262159207839a9.tar.gz
Allow standalone ternary expressions
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
-rw-r--r--modules/gdscript/gdscript_analyzer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h
index a7f8e3b556..3b8ed70e62 100644
--- a/modules/gdscript/gdscript_analyzer.h
+++ b/modules/gdscript/gdscript_analyzer.h
@@ -99,7 +99,7 @@ class GDScriptAnalyzer {
void reduce_preload(GDScriptParser::PreloadNode *p_preload);
void reduce_self(GDScriptParser::SelfNode *p_self);
void reduce_subscript(GDScriptParser::SubscriptNode *p_subscript);
- void reduce_ternary_op(GDScriptParser::TernaryOpNode *p_ternary_op);
+ void reduce_ternary_op(GDScriptParser::TernaryOpNode *p_ternary_op, bool p_is_root = false);
void reduce_unary_op(GDScriptParser::UnaryOpNode *p_unary_op);
void const_fold_array(GDScriptParser::ArrayNode *p_array);