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

Merge pull request #106683 from dalexeev/gds-remove-leftmost-rightmost-column

GDScript: Remove `leftmost_column` and `rightmost_column` fields
This commit is contained in:
Rémi Verschelde
2025-06-05 13:12:02 +02:00
11 changed files with 37 additions and 104 deletions

View File

@@ -149,8 +149,6 @@ bool GDScriptLanguage::validate(const String &p_script, const String &p_path, Li
ScriptLanguage::Warning w;
w.start_line = warn.start_line;
w.end_line = warn.end_line;
w.leftmost_column = warn.leftmost_column;
w.rightmost_column = warn.rightmost_column;
w.code = (int)warn.code;
w.string_code = GDScriptWarning::get_name_from_code(warn.code);
w.message = warn.get_message();