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
We used to look at a string literal like "\\" as not ending, and instead
mistook \" as escaping the ending quotes. This (longstanding, embarrassing)
bug would lead to weird syntax errors in lenses when encountered.
Fixeshercules-team#495
The backslash escaping in strings and regular expressions was handled incorrectly. In this module
the lexer does not properly recognize the end of
s
orr
since it views the ending characters as escaped, i.e. as\"
and\/
.The text was updated successfully, but these errors were encountered: