Closed Splamy closed 6 years ago
Using current master (c334f6edf3e3ef05da569a197ad851d61fb41824)
The following text fails to parse: a="\"" This only affects strings starting with \".
a="\""
\"
I think the problem lies within Lexer.LexString consuming the \ ignoring that it is an escape character for the next one.
Lexer.LexString
\
Thx for this fix and the tests.
Using current master (c334f6edf3e3ef05da569a197ad851d61fb41824)
The following text fails to parse:
a="\""
This only affects strings starting with\"
.I think the problem lies within
Lexer.LexString
consuming the\
ignoring that it is an escape character for the next one.