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
Examples of issues with the parser:
lips> " lips> lips> '' ;; => (quote #<eof>)
BiwaScheme have this code in REPL:
function unbalanced_parentheses(text_code) { try { (new BiwaScheme.Parser(text_code)).getObject(text_code); } catch(e) { if (e instanceof BiwaScheme.Parser.Unterminated) { return true; } else { return false; } } return false; }
The text was updated successfully, but these errors were encountered:
support unterminated strings in REPL #280
f05e4eb
fix parsing quotation without data #280
f17facc
fix parsing comments without newline at the end #280
01def3e
fix spell check #280
0e18b44
add unit tests #280
0db3abb
No branches or pull requests
Examples of issues with the parser:
BiwaScheme have this code in REPL:
The text was updated successfully, but these errors were encountered: