File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 594cf632147bd8eb21ae55e9e377412ef974397a
2
+ refs/heads/master: 99086292ac50458244722aedbad53c5047214429
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ let rec eval_cexps (env:env) (exps:cexp array) : cdir array =
344
344
345
345
and eval_cexp (env :env ) (exp :cexp ) : cdir array =
346
346
match exp with
347
- CEXP_alt {node = ca } ->
347
+ CEXP_alt { node = ca ; id = _ } ->
348
348
let v = eval_pexp env ca.alt_val in
349
349
let rec try_arm i =
350
350
if i > = Array. length ca.alt_arms
@@ -358,7 +358,7 @@ and eval_cexp (env:env) (exp:cexp) : cdir array =
358
358
in
359
359
eval_cexps env (try_arm 0 )
360
360
361
- | CEXP_let {node = cl } ->
361
+ | CEXP_let { node = cl ; id = _ } ->
362
362
let ident = cl.let_ident in
363
363
let v = eval_pexp env cl.let_value in
364
364
let old_bindings = ! (env.env_bindings) in
You can’t perform that action at this time.
0 commit comments