# File lib/sass/script/number.rb, line 146
    def div(other)
      if other.is_a? Number
        res = operate(other, :/)
        if self.original && other.original && context != :equals
          res.original = "#{self.original}/#{other.original}"
        end
        res
      else
        super
      end
    end