Skip to content

Commit

Permalink
Remove TODO comment regarding builtins in the parser
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Dec 22, 2024
1 parent 9620c17 commit ae1ae3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Test_Menhir.re
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let strip_parens_and_add_builtins =
VarMap.lookup(Haz3lcore.Builtins.Pervasives.builtins, x);
cont(
switch (builtin) {
| Some(Fn(_, _, _)) => cont(BuiltinFun(x) |> Exp.fresh) // TODO Decide whether these should be builtins in the parser or vars
| Some(Fn(_, _, _)) => cont(BuiltinFun(x) |> Exp.fresh)
| Some(Const(_, _))
| None => cont(e)
},
Expand Down

0 comments on commit ae1ae3d

Please sign in to comment.