mirror of https://github.com/godotengine/godot
Fix GDScript Tokenizer being very strict about the number of underscores
You can use multiple underscores in one number, just not two of them together.
This commit is contained in:
parent
4de0768cdb
commit
982a0ac348
|
|
@ -633,6 +633,8 @@ GDScriptTokenizer::Token GDScriptTokenizer::number() {
|
|||
push_error(error);
|
||||
}
|
||||
previous_was_underscore = true;
|
||||
} else {
|
||||
previous_was_underscore = false;
|
||||
}
|
||||
_advance();
|
||||
}
|
||||
|
|
@ -704,6 +706,8 @@ GDScriptTokenizer::Token GDScriptTokenizer::number() {
|
|||
push_error(error);
|
||||
}
|
||||
previous_was_underscore = true;
|
||||
} else {
|
||||
previous_was_underscore = false;
|
||||
}
|
||||
_advance();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue