org.jruby.runtime.callsite.ShiftRightCallSite Maven / Gradle / Ivy
package org.jruby.runtime.callsite;
import org.jruby.RubyFixnum;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class ShiftRightCallSite extends NormalCachingCallSite {
public ShiftRightCallSite() {
super(">>");
}
public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, long fixnum) {
if (self instanceof RubyFixnum && !context.runtime.isFixnumReopened()) {
return ((RubyFixnum) self).op_rshift(fixnum);
}
return super.call(context, caller, self, fixnum);
}
@Override
public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg) {
if (self instanceof RubyFixnum && !context.runtime.isFixnumReopened()) {
return ((RubyFixnum) self).op_rshift(arg);
}
return super.call(context, caller, self, arg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy