Skip to content

Commit

Permalink
fix(engine): change issue id
Browse files Browse the repository at this point in the history
Issue #96 was closed in favor of #15, this commit reflects that in code.
  • Loading branch information
W95Psp committed Oct 2, 2024
1 parent 9321a24 commit 0f85c15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/lib/phases/phase_cf_into_monads.ml
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ struct
let then_ = KnownMonads.lift "If:then-branch" then' mthen.monad m in
{ e = If { cond; then_; else_ }; span; typ = then_.typ }
| Continue _ ->
Error.unimplemented ~issue_id:96
Error.unimplemented ~issue_id:15
~details:"TODO: Monad for loop-related control flow" span
| Break _ ->
Error.unimplemented ~issue_id:96
Error.unimplemented ~issue_id:15
~details:"TODO: Monad for loop-related control flow" span
| QuestionMark { e; _ } -> dexpr e
| Return { e; _ } ->
Expand Down

0 comments on commit 0f85c15

Please sign in to comment.