class Sass::Constant::Number

def div(other)

def div(other)
  if other.is_a? Number
    operate(other, :/)
  else
    raise NoMethodError.new(nil, :div)
  end
end