class Sass::Constant::Color

def times(other)

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