class IDL::Expression::Operation::Shift

Protected Instance Methods

check_rop(rop) click to toggle source
# File lib/ridl/expression.rb, line 254
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