Skip to content

Commit

Permalink
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1829,6 +1829,11 @@ public RubyNode visitPreExeNode(PreExeNode node) {
return node.getBodyNode().accept(this);
}

@Override
public RubyNode visitPostExeNode(PostExeNode node) {
return node.getBodyNode().accept(this);
}

@Override
public RubyNode visitRedoNode(org.jruby.ast.RedoNode node) {
return new RedoNode(context, translate(node.getPosition()));

0 comments on commit 477750b

Please sign in to comment.