class Sass::Constant::Number

def parse(value)

def parse(value)
  first, second, unit = value.scan(Literal::NUMBER)[0]
  @value = first.empty? ? second.to_i : "#{first}#{second}".to_f
  @unit = unit unless unit.empty?
end