Unify TextServer built-in module and GDExtension code.

This commit is contained in:
bruvzg 2022-02-13 14:41:29 +02:00
parent 178961a6dc
commit f19cd44346
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
49 changed files with 4658 additions and 3126 deletions

View file

@ -392,7 +392,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
stack_dump_info.push_back(d);
s->set_metadata(0, d);
String line = itos(i) + " - " + String(d["file"]) + ":" + itos(d["line"]) + " - at function: " + d["function"];
String line = itos(i) + " - " + String(d["file"]) + ":" + itos(d["line"]) + " - at function: " + String(d["function"]);
s->set_text(0, line);
if (i == 0) {