1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix segfault when trying to autocomplete in inner classes

Fixes #24697
This commit is contained in:
Timo Schwarzer
2019-01-03 15:51:34 +01:00
parent 200be0795d
commit d77643562b

View File

@@ -2442,9 +2442,13 @@ Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base
context._class = parser.get_completion_class();
context.block = parser.get_completion_block();
context.function = parser.get_completion_function();
context.base = p_owner;
context.base_path = p_base_path;
context.line = parser.get_completion_line();
if (!context._class) {
context.base = p_owner;
context.base_path = p_base_path;
}
bool is_function = false;
switch (parser.get_completion_type()) {