File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ compile-expr-strict := λctx e offset used . (tail(
160
160
( (App( (App( (App( (Variable 'if) cond )) t )) f )) (tail(
161
161
(set e1 (compile-expr-strict( ctx cond offset Used )))
162
162
(set e2 (compile-expr-strict( (expr::get-context e1) t (expr::get-offset e1) Used )))
163
- (set e3 (compile-expr-strict( (expr::get-context e2 ) f (expr::get-offset e2 ) Used )))
163
+ (set e3 (compile-expr-strict( (expr::get-context e1 ) f (expr::get-offset e1 ) Used )))
164
164
(match (expr::get-type e1) (
165
165
()
166
166
(BranchConditional ())
@@ -192,8 +192,8 @@ compile-expr-strict := λctx e offset used . (tail(
192
192
(expr::get-unframe e2)
193
193
label-end ': \n
194
194
))))
195
- (set e4 (expr::set-context( e4 (expr::get-context e3) )))
196
- (set e4 (expr::set-offset( e4 (expr::get- offset e3) )))
195
+ (set e4 (expr::set-context( e4 ctx )))
196
+ (set e4 (expr::set-offset( e4 offset )))
197
197
e4
198
198
)))
199
199
( (App( (Variable 'label) (Variable label-name) )) (
You can’t perform that action at this time.
0 commit comments