diff options
author | George Marques <george@gmarqu.es> | 2023-02-19 12:57:09 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2023-02-19 13:00:07 -0300 |
commit | 75f16b8167fe23d06983d92a9bb66701cf0a0f7a (patch) | |
tree | 31a2d77a22b8bf1ddde787cf5984d5f7aabace7d /modules/gdscript/gdscript_analyzer.h | |
parent | 28db611f0f27c37d2d02fc986e9edbb8a8725267 (diff) |
Make global scope enums accessible as types in GDScript
Add functions to CoreConstant so enums can be properly deduced. Also add
the enums in release builds to make consistent with ClassDB enums and
avoid differences in script compilation between debug and release.
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h index cdeba374c7..1cf96db3ce 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -98,7 +98,7 @@ class GDScriptAnalyzer { void reduce_literal(GDScriptParser::LiteralNode *p_literal); void reduce_preload(GDScriptParser::PreloadNode *p_preload); void reduce_self(GDScriptParser::SelfNode *p_self); - void reduce_subscript(GDScriptParser::SubscriptNode *p_subscript); + void reduce_subscript(GDScriptParser::SubscriptNode *p_subscript, bool p_can_be_pseudo_type = false); void reduce_ternary_op(GDScriptParser::TernaryOpNode *p_ternary_op, bool p_is_root = false); void reduce_unary_op(GDScriptParser::UnaryOpNode *p_unary_op); |