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
It's cumbersome to treat the spacing inside the grammar.
peg!( grammar ntcc; comparison = le / neq / lt / ge / gt / eq spacing = [" \n\t"]* tokens(spacing) { lt = "<" le = "<=" gt = ">" ge = ">=" eq = "==" neq = "<>" } )
"tokens" is a special keyword parametrized by a separator applied before and after each tokens.
The text was updated successfully, but these errors were encountered:
This will be handle in a different way. Due to #80 we will be able to directly match on a token stream. For now, we close this because it does not seem the "right" way anymore.
Sorry, something went wrong.
No branches or pull requests
It's cumbersome to treat the spacing inside the grammar.
"tokens" is a special keyword parametrized by a separator applied before and after each tokens.
The text was updated successfully, but these errors were encountered: