Skip to content

Commit

Permalink
unsure - having git stash issues
Browse files Browse the repository at this point in the history
  • Loading branch information
green726 committed Jul 2, 2024
1 parent 6e0b6ec commit 3c29964
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rust/Grammar.re
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ let c = (~p=Padding.none, s) => t(Label.const(~padding=p, s));
let abi = t(Id_lower);

//Path exps
let typ_atom = nt(Sort.of_str("Typ"))
let typ_atom = nt(Sort.of_str("Typ"));

let path_ident_segment =
alt([
Expand Down
3 changes: 1 addition & 2 deletions src/rust/Sort.re
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ type t =
| Exp
| Pat
| Stat
| Item
| Item
| Typ;

let root = Item;
let all = [Exp, Pat, Typ, Item, Stat];


let to_str =
fun
| Typ => "Typ"
Expand Down

0 comments on commit 3c29964

Please sign in to comment.