mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
GDScript: Remove leftmost_column and rightmost_column fields
This commit is contained in:
parent
428a762e98
commit
7aafa6ef18
11 changed files with 37 additions and 104 deletions
|
|
@ -79,7 +79,7 @@ void GDScriptCompiler::_set_error(const String &p_error, const GDScriptParser::N
|
|||
error = p_error;
|
||||
if (p_node) {
|
||||
err_line = p_node->start_line;
|
||||
err_column = p_node->leftmost_column;
|
||||
err_column = p_node->start_column;
|
||||
} else {
|
||||
err_line = 0;
|
||||
err_column = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue