Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -118,7 +118,7 @@ public Object doCatch(VirtualFrame frame, Object tag, RubyBasicObject block) {
if (areSame(frame, e.getTag(), tag)) {
if (clearExceptionVariableNode == null) {
CompilerDirectives.transferToInterpreter();
clearExceptionVariableNode = new ClearExceptionVariableNode(getContext(), getSourceSection());
clearExceptionVariableNode = insert(new ClearExceptionVariableNode(getContext(), getSourceSection()));
}
clearExceptionVariableNode.execute(frame);
return e.getValue();

0 comments on commit 9401b65

Please sign in to comment.