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
field_expression
Currently it does not parse field_expression nodes. Those can be translated to getattr, ie:
getattr
metavar.foo; // -> getattr(metavar, "foo") // also parsed: metavar->foo; metavar.*foo;
Whether -> and/or .* shall have special meaning in the DSL is to be determined. Right now I think it's best to raise a ParseError if these are used.
->
.*
ParseError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it does not parse
field_expression
nodes. Those can be translated togetattr
, ie:Whether
->
and/or.*
shall have special meaning in the DSL is to be determined. Right now I think it's best to raise aParseError
if these are used.The text was updated successfully, but these errors were encountered: