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
Currently, conditional property values like if (os == "win") and debug don't parse, because we don't parse conditionals correctly. This seems simple to fix, but I haven't discovered the right incantation of chumsky to use with the pratt parser we're using here: https://github.com/ErichDonGubler/whippit/blob/44e58a051052e12874b171297e033c4729f810a1/src/metadata/properties/conditional/expr.rs#L79-L87
if (os == "win") and debug
chumsky
pratt
The text was updated successfully, but these errors were encountered:
ErichDonGubler
Successfully merging a pull request may close this issue.
Currently, conditional property values like
if (os == "win") and debug
don't parse, because we don't parse conditionals correctly. This seems simple to fix, but I haven't discovered the right incantation ofchumsky
to use with thepratt
parser we're using here: https://github.com/ErichDonGubler/whippit/blob/44e58a051052e12874b171297e033c4729f810a1/src/metadata/properties/conditional/expr.rs#L79-L87The text was updated successfully, but these errors were encountered: