Fix LSP crash parsing scripts of temp size 0
This commit is contained in:
parent
0a7c6c0f1d
commit
679ce6fd0b
|
@ -409,9 +409,11 @@ String ExtendGDScriptParser::parse_documentation(int p_line, bool p_docs_down) {
|
||||||
doc_lines.push_front(line_comment);
|
doc_lines.push_front(line_comment);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
String next_line = lines[MAX(0, i + step)].strip_edges(true, false);
|
if (i > 0 && i < lines.size() - 1) {
|
||||||
if (next_line.begins_with("#")) {
|
String next_line = lines[i + step].strip_edges(true, false);
|
||||||
continue;
|
if (next_line.begins_with("#")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue