Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -116,9 +116,9 @@ public IRubyObject callHelper(ThreadContext context, StaticScope currScope, Dyna
case HANDLE_PROPAGATED_BREAK:
return IRRuntimeHelpers.handlePropagatedBreak(context, currDynScope, arg1, blockType);
case HANDLE_NONLOCAL_RETURN:
return IRRuntimeHelpers.handleNonlocalReturn(scope, currDynScope, arg1, blockType);
return IRRuntimeHelpers.handleNonlocalReturn(currScope, currDynScope, arg1, blockType);
case HANDLE_BREAK_AND_RETURNS_IN_LAMBDA:
return IRRuntimeHelpers.handleBreakAndReturnsInLambdas(context, scope, currDynScope, arg1, blockType);
return IRRuntimeHelpers.handleBreakAndReturnsInLambdas(context, currScope, currDynScope, arg1, blockType);
case IS_DEFINED_CALL:
return IRRuntimeHelpers.isDefinedCall(
context,

0 comments on commit bb6fb44

Please sign in to comment.