Skip to content

Commit

Permalink
Generate arghint for script types
Browse files Browse the repository at this point in the history
  • Loading branch information
HolonProduction committed Jul 13, 2024
1 parent 97b8ad1 commit 402bdfa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions modules/gdscript/gdscript_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2768,6 +2768,20 @@ static void _find_call_arguments(GDScriptParser::CompletionContext &p_context, c

base_type = base_type.class_type->base_type;
} break;
case GDScriptParser::DataType::SCRIPT: {
if (base_type.script_type->is_valid() && base_type.script_type->has_method(p_method)) {
r_arghint = _make_arguments_hint(base_type.script_type->get_method_info(p_method), p_argidx);
return;
}
Ref<Script> base_script = base_type.script_type->get_base_script();
if (base_script.is_valid()) {
base_type.script_type = base_script;
} else {
base_type.kind = GDScriptParser::DataType::NATIVE;
base_type.builtin_type = Variant::OBJECT;
base_type.native_type = base_type.script_type->get_instance_base_type();
}
} break;
case GDScriptParser::DataType::NATIVE: {
StringName class_name = base_type.native_type;
if (!ClassDB::class_exists(class_name)) {
Expand Down

0 comments on commit 402bdfa

Please sign in to comment.