diff options
author | Adam Scott <ascott.ca@gmail.com> | 2022-12-18 00:38:53 -0500 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2023-01-09 20:12:10 -0500 |
commit | fb175d92da1f077df37eceb6bd3dc5595d572a82 (patch) | |
tree | 0de172fb40593fbb11b28ea8c7d259413c798e4a /modules/gdscript/gdscript_analyzer.h | |
parent | d3fc9d9e416560d228a7914a82902118ce911a4d (diff) | |
download | redot-engine-fb175d92da1f077df37eceb6bd3dc5595d572a82.tar.gz |
Fix GDScript base and outer classes, signals and functions lookup order
- Add outer class lookup test
- Add signal lookup test
Co-authored-by: Dmitrii Maganov <vonagam@gmail.com>
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h index a90a70dd9b..ecae0b4629 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -123,6 +123,7 @@ class GDScriptAnalyzer { void mark_lambda_use_self(); bool class_exists(const StringName &p_class) const; Ref<GDScriptParserRef> get_parser_for(const String &p_path); + static void reduce_identifier_from_base_set_class(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType p_identifier_datatype); #ifdef DEBUG_ENABLED bool is_shadowing(GDScriptParser::IdentifierNode *p_local, const String &p_context); #endif |