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 expression:
(set-special! "$" 'interpolate)
Completely screw up the parser.
it throws an error about the unbound first letter of any name:
lips> (define x 10) Unbound variable `d'
The text was updated successfully, but these errors were encountered:
fix handling ^ and $ syntax extension #318
^
$
7e68f95
The problem was that match on string implicity converted the string to regular expression and `$` or `^` was always matching
The problem was that the Lexer state machine was expecting:
char.match("$")
and $ was implicitly converted to a regular expression that always match.
Sorry, something went wrong.
No branches or pull requests
This expression:
Completely screw up the parser.
it throws an error about the unbound first letter of any name:
The text was updated successfully, but these errors were encountered: