We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This string gives issues:
"\\"
because the lexer have very simple rule for strings:
[/"/, /^$|[^\\]/, null, null, Lexer.string], [/"/, /^$|[^\\]/, null, Lexer.string, null],
The text was updated successfully, but these errors were encountered:
This may be fixed by introducing two states for strings. One normal string and one for escape characters.
Lexer.string_escape
Sorry, something went wrong.
fix parsing strings #193
70c3fcd
fix lint error #193
c3d9939
No branches or pull requests
This string gives issues:
because the lexer have very simple rule for strings:
The text was updated successfully, but these errors were encountered: