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
You can write an expression that will refer to fields parsed after the field which you try to parse:
meta: id: dependencies_bug seq: - id: value size: after - id: after type: u1
compiled successfully in both development and released WebIDE.
This check could be more tricky because compiler should also detect indirect dependencies and prohibit them:
meta: id: indirect_dependencies_bug params: - id: direct_size type: bool seq: - id: value size: instance - id: after type: u1 instances: instance: value: 'direct_size ? 2 : after'
At the same time, I would like this to be allowed:
meta: id: indirect_dependencies_allowed params: - id: direct_size type: bool seq: - id: value size: 'direct_size ? instance : 3' - id: after type: u1 instances: instance: value: 'direct_size ? 2 : after'
The text was updated successfully, but these errors were encountered:
Duplicate of #469
Sorry, something went wrong.
if
No branches or pull requests
You can write an expression that will refer to fields parsed after the field which you try to parse:
compiled successfully in both development and released WebIDE.
This check could be more tricky because compiler should also detect indirect dependencies and prohibit them:
At the same time, I would like this to be allowed:
The text was updated successfully, but these errors were encountered: