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 fails to parse:
package example p { x = 1 # inline comment x = y }
Error:
1 error occurred: /Users/torin/rego/comments1.rego:4: no match found, unexpected '{'
This is OK:
package example p { x = y x = 1 # inline comment }
Also, ast.ParseBody calls that supply non-enclosed/whitespace separated expressions are not parsing.
The text was updated successfully, but these errors were encountered:
Fix parsing of inline comments
7a73167
Fixes open-policy-agent#258
63b7e7e
No branches or pull requests
This fails to parse:
Error:
This is OK:
Also, ast.ParseBody calls that supply non-enclosed/whitespace separated expressions are not parsing.
The text was updated successfully, but these errors were encountered: