Skip to content

Commit

Permalink
Fixed the invalid reduce/reduce conflict and added LESS_THAN back int…
Browse files Browse the repository at this point in the history
…o the menhir parser
  • Loading branch information
green726 committed Nov 4, 2024
1 parent 574c359 commit 8b79893
Show file tree
Hide file tree
Showing 5 changed files with 7,052 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/haz3lmenhir/Lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ rule token =
| "type" {TYP}
| "$" {DOLLAR_SIGN}
| "~" {TILDE}
| "t" {T_TYP}
| "p" {P_PAT}
| "tp" {TP_TPAT}
| "e" {E_EXP}
| "named_fun" {NAMED_FUN}
| identifier as i { IDENT(i) }
| constructor_ident as i { CONSTRUCTOR_IDENT(i)}
Expand Down
Loading

0 comments on commit 8b79893

Please sign in to comment.