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
It'd be helpful to have a syntax for comments in JEXL strings like:
// This is a comment "this is a literal"
Right now there doesn't seem to be any way to add a comment to a JEXL statement:
In [6]: list(jexl.validate("true")) Out[6]: []
In [7]: list(jexl.validate("##stuff\ntrue")) Out[7]: ['Could not parse expression: ##stuff\ntrue']
In [8]: list(jexl.validate("//stuff\ntrue")) Out[8]: ['Could not parse expression: //stuff\ntrue']
The text was updated successfully, but these errors were encountered:
Hi @jaredkerim This issue is interesting for me. Which style is required // or ## ?
//
##
Sorry, something went wrong.
No branches or pull requests
It'd be helpful to have a syntax for comments in JEXL strings like:
// This is a comment
"this is a literal"
Right now there doesn't seem to be any way to add a comment to a JEXL statement:
In [6]: list(jexl.validate("true"))
Out[6]: []
In [7]: list(jexl.validate("##stuff\ntrue"))
Out[7]: ['Could not parse expression: ##stuff\ntrue']
In [8]: list(jexl.validate("//stuff\ntrue"))
Out[8]: ['Could not parse expression: //stuff\ntrue']
The text was updated successfully, but these errors were encountered: