Skip to content

Commit

Permalink
Update src/mo_frontend/definedness.ml
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreif authored Jul 10, 2024
1 parent d3b9415 commit 3f57777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mo_frontend/definedness.ml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ let rec exp msgs e : f = match e.it with
(* Eager uses are either first-class uses of a variable: *)
| VarE i -> M.singleton i.it Eager
(* Or anything that is occurring in a call (as this may call a closure): *)
| CallE (_FIXME, e1, ts, e2) -> eagerify (exps msgs [e1; e2])
| CallE (_FIXME, e1, ts, e2) -> eagerify (exps msgs [e1; e2])
(* And break, return, throw can be thought of as calling a continuation: *)
| BreakE (i, e) -> eagerify (exp msgs e)
| RetE e -> eagerify (exp msgs e)
Expand Down

0 comments on commit 3f57777

Please sign in to comment.