class Sass::Constant::Color

def div(other)

def div(other)
  if other.is_a? Sass::Constant::String
    raise NoMethodError.new(nil, :div)
  else
    piecewise(other, :/)
  end
end