Skip to content

Commit

Permalink
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1824,6 +1824,11 @@ public RubyNode visitOrNode(org.jruby.ast.OrNode node) {
return new OrNode(context, sourceSection, x, y);
}

@Override
public RubyNode visitPreExeNode(PreExeNode node) {
return node.getBodyNode().accept(this);
}

@Override
public RubyNode visitRedoNode(org.jruby.ast.RedoNode node) {
return new RedoNode(context, translate(node.getPosition()));
3 changes: 0 additions & 3 deletions spec/truffle/tags/language/BEGIN_tags.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
fails:The BEGIN keyword runs first in a given code unit
fails:The BEGIN keyword runs multiple begins in FIFO order
fails:The BEGIN keyword runs in a shared scope
fails:The BEGIN keyword accesses variables outside the eval scope

0 comments on commit d030fd1

Please sign in to comment.