summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_editor.cpp
diff options
context:
space:
mode:
authorYuri Rubinsky <chaosus89@gmail.com>2024-06-07 21:24:23 +0300
committerYuri Rubinsky <chaosus89@gmail.com>2024-06-08 10:52:01 +0300
commit5962646fd3220b5fb5a4faec8599f05b4904cdfa (patch)
tree8b35566000c991225acd087ab604239c69ae1f5c /modules/gdscript/gdscript_editor.cpp
parente96ad5af98547df71b50c4c4695ac348638113e0 (diff)
downloadredot-engine-5962646fd3220b5fb5a4faec8599f05b4904cdfa.tar.gz
Fix goto definition for `new` method
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r--modules/gdscript/gdscript_editor.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp
index 11d4a4002c..fcabb7c4a8 100644
--- a/modules/gdscript/gdscript_editor.cpp
+++ b/modules/gdscript/gdscript_editor.cpp
@@ -3571,9 +3571,13 @@ static Error _lookup_symbol_from_base(const GDScriptParser::DataType &p_base, co
switch (base_type.kind) {
case GDScriptParser::DataType::CLASS: {
if (base_type.class_type) {
- if (base_type.class_type->has_member(p_symbol)) {
+ String name = p_symbol;
+ if (name == "new") {
+ name = "_init";
+ }
+ if (base_type.class_type->has_member(name)) {
r_result.type = ScriptLanguage::LOOKUP_RESULT_SCRIPT_LOCATION;
- r_result.location = base_type.class_type->get_member(p_symbol).get_line();
+ r_result.location = base_type.class_type->get_member(name).get_line();
r_result.class_path = base_type.script_path;
Error err = OK;
r_result.script = GDScriptCache::get_shallow_script(r_result.class_path, err);