diff options
author | ocean (they/them) <anvilfolk@gmail.com> | 2022-11-08 17:41:50 -0500 |
---|---|---|
committer | ocean (they/them) <anvilfolk@gmail.com> | 2022-11-17 17:21:12 -0500 |
commit | 13be0ab733d83a494f3dbaedd94cc00d0dbe0d88 (patch) | |
tree | 7153dfd8c1cb9b216ad5753382a016bcbb2ea66e /modules/gdscript/gdscript_analyzer.h | |
parent | 2846ea1ffafddfc447036b37d255f72cb278b677 (diff) | |
download | redot-engine-13be0ab733d83a494f3dbaedd94cc00d0dbe0d88.tar.gz |
Fix ability to overload "script" variable
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 217a856ce0..23a3ad39a5 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -45,7 +45,7 @@ class GDScriptAnalyzer { List<GDScriptParser::LambdaNode *> lambda_stack; // Tests for detecting invalid overloading of script members - static _FORCE_INLINE_ bool has_member_name_conflict_in_script_class(const StringName &p_name, const GDScriptParser::ClassNode *p_current_class_node); + static _FORCE_INLINE_ bool has_member_name_conflict_in_script_class(const StringName &p_name, const GDScriptParser::ClassNode *p_current_class_node, const GDScriptParser::Node *p_member); static _FORCE_INLINE_ bool has_member_name_conflict_in_native_type(const StringName &p_name, const StringName &p_native_type_string); Error check_native_member_name_conflict(const StringName &p_member_name, const GDScriptParser::Node *p_member_node, const StringName &p_native_type_string); Error check_class_member_name_conflict(const GDScriptParser::ClassNode *p_class_node, const StringName &p_member_name, const GDScriptParser::Node *p_member_node); |