mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
Increase line counter when parsing comments
(cherry picked from commit bf708e72dc)
This commit is contained in:
committed by
Rémi Verschelde
parent
ddc14b6bbc
commit
4cfe174263
@@ -157,6 +157,7 @@ Error VariantParser::get_token(Stream *p_stream, Token &r_token, int &line, Stri
|
||||
return OK;
|
||||
}
|
||||
if (ch == '\n') {
|
||||
line++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1457,6 +1458,7 @@ Error VariantParser::parse_tag_assign_eof(Stream *p_stream, int &line, String &r
|
||||
return ERR_FILE_EOF;
|
||||
}
|
||||
if (ch == '\n') {
|
||||
line++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user