class IDL::Expression::Operation::Shift

def check_rop(rop)

def check_rop(rop)
  unless (0...64) === rop
    raise "right operand for shift must be in the range 0 <= right operand < 64: #{rop}."
  end
end