You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently some characters are not allowed in content, namely ,, } and \n as they are used to find end of content in Lexer#lexIdentifierContent(). Optional " for raw strings would be nice.
Ive encountered this in definition for FreeTypeFontGenerator as it uses field for characters that should be generated.
While I dont really need this to be fixed, issue created in case someone else founds this problem.
One way this can be worked around is by using unicode escapes in the string instead of actual characters, ie \u007D instead of }
The text was updated successfully, but these errors were encountered:
Currently some characters are not allowed in content, namely
,
,}
and\n
as they are used to find end of content inLexer#lexIdentifierContent()
. Optional " for raw strings would be nice.Ive encountered this in definition for
FreeTypeFontGenerator
as it uses field for characters that should be generated.While I dont really need this to be fixed, issue created in case someone else founds this problem.
One way this can be worked around is by using unicode escapes in the string instead of actual characters, ie
\u007D
instead of}
The text was updated successfully, but these errors were encountered: