[gitfix] rebase fix

This commit is contained in:
Arnaud DABY-SEESARAM
2022-12-13 15:04:53 +01:00
parent bb017afe39
commit 69b963c305
3 changed files with 0 additions and 5 deletions

View File

@@ -78,7 +78,6 @@ let pre2vars =
| EApp (ty, node, arg) ->
let arg = pre_push arg in
EApp (ty, node, arg)
| EAuto _ -> failwith "toto"
in
let rec aux (expr: t_expression) =
match expr with
@@ -113,7 +112,6 @@ let pre2vars =
| EApp (ty, node, arg) ->
let arg = aux arg in
EApp (ty, node, arg)
| EAuto _ -> failwith "todo"
in
expression_pass (Utils.somify aux)