class IDL::Expression::Operation::Shift

def check_rop(rop)

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