minor fixups

This commit is contained in:
Moritz Gmeiner 2024-08-29 02:57:58 +02:00
commit f4ddaeb11d
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ type lox_function = {
env : environment;
arity : int;
arg_names : string list;
body : Stmt.stmt_node; [@printer fun fmt _ -> fprintf fmt "<body>"]
body : Stmt.stmt_node;
}
and native_function = {