feat: ?h cond a b prefix-ternary for general conditions#363
Merged
Conversation
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
ai.txt and skills/ilo/SKILL.md were out of sync with SPEC.md (build.rs regenerates them from SPEC.md and CI verifies no drift). examples/ternary-h-prefix.ilo used `eq mn "v40"` but `eq` is not a builtin; only the `=` operator exists. Swap for the parenthesised `(=mn "v40")` form that the parser accepts on a let-RHS. Update the matching SPEC.md snippet for the same reason.
The previous regen was stale because cargo's rerun-if-changed didn't trip on the SPEC.md edit in the same commit. Touch SPEC.md and rebuild so build.rs writes the current snapshot. regression_ternary_h_keyword.rs:79 also used the non-existent `eq` builtin; swap for `(=mn "ok")` so the test exercises the same shape as the example and the SPEC.md snippet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes security-researcher rerun8 ternary-RHS finding.