mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
Merge pull request #2955 from koalefant/missing-colon
GDScript: fixed highlighting of the next line when colon is missing
This commit is contained in:
commit
25a2f33093
@ -65,8 +65,10 @@ bool GDParser::_enter_indent_block(BlockNode* p_block) {
|
||||
|
||||
|
||||
if (tokenizer->get_token()!=GDTokenizer::TK_COLON) {
|
||||
|
||||
_set_error("':' expected at end of line.");
|
||||
// report location at the previous token (on the previous line)
|
||||
int error_line = tokenizer->get_token_line(-1);
|
||||
int error_column = tokenizer->get_token_column(-1);
|
||||
_set_error("':' expected at end of line.",error_line,error_column);
|
||||
return false;
|
||||
}
|
||||
tokenizer->advance();
|
||||
|
Loading…
Reference in New Issue
Block a user