summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_editor.cpp
diff options
context:
space:
mode:
authorHolonProduction <holonproduction@gmail.com>2024-05-22 18:54:43 +0200
committerHolonProduction <holonproduction@gmail.com>2024-07-12 12:32:30 +0200
commit9a84387017fe7921954107d16a69a54ff54556f6 (patch)
treea3ae167b7dbbe937e2d89c8919c60a8b34a9833c /modules/gdscript/gdscript_editor.cpp
parent26d1577f3985363faab48a65e9a0d9eed0e26d86 (diff)
downloadredot-engine-9a84387017fe7921954107d16a69a54ff54556f6.tar.gz
Autocompletion: Keep get_node values which are compatible with type hint
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r--modules/gdscript/gdscript_editor.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp
index b58b44973e..12a8f5ba33 100644
--- a/modules/gdscript/gdscript_editor.cpp
+++ b/modules/gdscript/gdscript_editor.cpp
@@ -2971,11 +2971,6 @@ static bool _get_subscript_type(GDScriptParser::CompletionContext &p_context, co
} break;
case GDScriptParser::Node::IDENTIFIER: {
- if (p_subscript->base->datatype.type_source == GDScriptParser::DataType::ANNOTATED_EXPLICIT) {
- // Annotated type takes precedence.
- return false;
- }
-
const GDScriptParser::IdentifierNode *identifier_node = static_cast<GDScriptParser::IdentifierNode *>(p_subscript->base);
switch (identifier_node->source) {
@@ -3013,6 +3008,14 @@ static bool _get_subscript_type(GDScriptParser::CompletionContext &p_context, co
if (get_node != nullptr) {
const Object *node = p_context.base->call("get_node_or_null", NodePath(get_node->full_path));
if (node != nullptr) {
+ GDScriptParser::DataType assigned_type = _type_from_variant(node, p_context).type;
+ GDScriptParser::DataType base_type = p_subscript->base->datatype;
+
+ if (p_subscript->base->type == GDScriptParser::Node::IDENTIFIER && base_type.type_source == GDScriptParser::DataType::ANNOTATED_EXPLICIT && (assigned_type.kind != base_type.kind || assigned_type.script_path != base_type.script_path || assigned_type.native_type != base_type.native_type)) {
+ // Annotated type takes precedence.
+ return false;
+ }
+
if (r_base != nullptr) {
*r_base = node;
}