Skip to content

Commit

Permalink
Reverse application (#1350)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus- authored Aug 2, 2024
2 parents 1fd72f0 + 8d2523a commit d6a36ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haz3lcore/statics/MakeTerm.re
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ and exp_term: unsorted => (UExp.term, list(Id.t)) = {
| ([";"], []) => Seq(l, r)
| (["++"], []) => BinOp(String(Concat), l, r)
| (["$=="], []) => BinOp(String(Equals), l, r)
| (["|>"], []) => Ap(Reverse, l, r)
| (["|>"], []) => Ap(Reverse, r, l)
| (["@"], []) => ListConcat(l, r)
| _ => hole(tm)
},
Expand Down

0 comments on commit d6a36ea

Please sign in to comment.