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
@@ -821,7 +821,7 @@ public Object bitXOr(VirtualFrame frame, Object a, RubyBasicObject b) {

}

@CoreMethod(names = "<<", required = 1)
@CoreMethod(names = "<<", required = 1, lowerFixnumParameters = 0)
public abstract static class LeftShiftNode extends BignumNodes.BignumCoreMethodNode {

@Child private CallDispatchHeadNode fallbackCallNode;
@@ -920,7 +920,7 @@ static boolean isStrictlyNegative(int value) {

}

@CoreMethod(names = ">>", required = 1)
@CoreMethod(names = ">>", required = 1, lowerFixnumParameters = 0)
public abstract static class RightShiftNode extends CoreMethodArrayArgumentsNode {

@Child private CallDispatchHeadNode fallbackCallNode;

0 comments on commit 153dd31

Please sign in to comment.