Skip to content

Commit

Permalink
[Truffle] Implement BEGIN's sibling, END.
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Nov 17, 2014
1 parent d227756 commit 477750b
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -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()));
Expand Down

0 comments on commit 477750b

Please sign in to comment.