Add support for Unicode identifiers in GDScript
This is using an adapted version of UAX#31 to not rely on the ICU database (which isn't available in builds without TextServerAdvanced). It allows most characters used in diverse scripts but not everything.
This commit is contained in:
parent
2ec0da1a75
commit
7548e043fc
14 changed files with 145 additions and 33 deletions
|
|
@ -0,0 +1,3 @@
|
|||
func test():
|
||||
var аs # Using Cyrillic "а".
|
||||
print(аs)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
GDTEST_PARSER_ERROR
|
||||
Identifier "аs" is visually similar to the GDScript keyword "as" and thus not allowed.
|
||||
Loading…
Add table
Add a link
Reference in a new issue