mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Merge pull request #46714 from HaSa1002/fix-gdscript-underscore-strict
Fix GDScript Tokenizer being very strict about the number of underscores
This commit is contained in:
commit
ee4ef9709d
1 changed files with 4 additions and 0 deletions
|
@ -643,6 +643,8 @@ GDScriptTokenizer::Token GDScriptTokenizer::number() {
|
|||
push_error(error);
|
||||
}
|
||||
previous_was_underscore = true;
|
||||
} else {
|
||||
previous_was_underscore = false;
|
||||
}
|
||||
_advance();
|
||||
}
|
||||
|
@ -714,6 +716,8 @@ GDScriptTokenizer::Token GDScriptTokenizer::number() {
|
|||
push_error(error);
|
||||
}
|
||||
previous_was_underscore = true;
|
||||
} else {
|
||||
previous_was_underscore = false;
|
||||
}
|
||||
_advance();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue