Fix LSP completion crashing on sceneless scripts

(cherry picked from commit 6db17a523e)
This commit is contained in:
Francois Belair 2021-08-06 15:20:47 -04:00 committed by Rémi Verschelde
parent a384ffa2b0
commit 9d0e0fe783
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -445,22 +445,24 @@ void GDScriptWorkspace::completion(const lsp::CompletionParams &p_params, List<S
Array stack;
Node *current = nullptr;
stack.push_back(owner_scene_node);
while (!stack.empty()) {
current = stack.pop_back();
if (owner_scene_node) {
stack.push_back(owner_scene_node);
while (!stack.empty()) {
current = stack.pop_back();
Ref<GDScript> script = current->get_script();
if (script.is_valid() && script->get_path() == path) {
break;
}
for (int i = 0; i < current->get_child_count(); ++i) {
stack.push_back(current->get_child(i));
}
}
Ref<GDScript> script = current->get_script();
if (script.is_valid() && script->get_path() == path) {
break;
if (!script.is_valid() || script->get_path() != path) {
current = owner_scene_node;
}
for (int i = 0; i < current->get_child_count(); ++i) {
stack.push_back(current->get_child(i));
}
}
Ref<GDScript> script = current->get_script();
if (!script.is_valid() || script->get_path() != path) {
current = owner_scene_node;
}
String code = parser->get_text_for_completion(p_params.position);