Skip to content

Commit

Permalink
Merge pull request #54 from Wasm-DSL/fix.bound_prem
Browse files Browse the repository at this point in the history
Fix bound variables for premises
  • Loading branch information
rossberg authored Jan 19, 2024
2 parents 9ff4a91 + 019ace3 commit 0538ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectec/src/el/free.ml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ and bound_prem prem =
| RulePr (_id, e) -> free_exp e
| IfPr e -> bound_exp e
| ElsePr -> empty
| IterPr (prem1, _iter) -> bound_prem prem1
| IterPr (prem1, iter) -> union (bound_prem prem1) (bound_iter iter)


(* Grammars *)
Expand Down

0 comments on commit 0538ee0

Please sign in to comment.