diff options
author | Chaosus <chaosus89@gmail.com> | 2024-08-06 17:56:09 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2024-10-08 22:46:44 +0300 |
commit | 54f6a1bf64c22b3d513b0bf1fe68f83d5ea41c12 (patch) | |
tree | 8dcfd0eb37fa5013e30cdd1f2f523c96531aff03 /modules/gdscript/gdscript_editor.cpp | |
parent | 4c4e67334412f73c9deba5e5d29afa8651418af2 (diff) | |
download | redot-engine-54f6a1bf64c22b3d513b0bf1fe68f83d5ea41c12.tar.gz |
Fix lookup symbol for enum members to search a correct code definition
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 0fd891aa80..3de1decc18 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -3782,7 +3782,19 @@ static Error _lookup_symbol_from_base(const GDScriptParser::DataType &p_base, co } } break; case GDScriptParser::DataType::ENUM: { - if (base_type.enum_values.has(p_symbol)) { + if (base_type.class_type && base_type.class_type->has_member(base_type.enum_type)) { + GDScriptParser::EnumNode *base_enum = base_type.class_type->get_member(base_type.enum_type).m_enum; + for (const GDScriptParser::EnumNode::Value &value : base_enum->values) { + if (value.identifier && value.identifier->name == p_symbol) { + r_result.type = ScriptLanguage::LOOKUP_RESULT_SCRIPT_LOCATION; + r_result.class_path = base_type.script_path; + r_result.location = value.line; + Error err = OK; + r_result.script = GDScriptCache::get_shallow_script(r_result.class_path, err); + return err; + } + } + } else if (base_type.enum_values.has(p_symbol)) { r_result.type = ScriptLanguage::LOOKUP_RESULT_CLASS_CONSTANT; r_result.class_name = String(base_type.native_type).get_slicec('.', 0); r_result.class_member = p_symbol; |