Skip to content

Commit

Permalink
reorder sorts
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Sep 26, 2024
1 parent 2de0784 commit e9b9e42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/Sort.re
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[@deriving (show({with_path: false}), sexp, yojson, ord)]
type t =
| Exp
| Stat
| Prog
| Stat
| Exp
| Pat;

let root = Prog;
let all = [Exp, Pat, Stat, Prog];
let all = [Prog, Stat, Exp, Pat];

let to_str =
fun
Expand Down

0 comments on commit e9b9e42

Please sign in to comment.