You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
require 'sass/constant/literal'
|
|
|
|
module Sass::Constant # :nodoc:
|
|
class String < Literal # :nodoc:
|
|
|
|
def parse(value)
|
|
@value = value
|
|
end
|
|
|
|
def plus(other)
|
|
Sass::Constant::String.from_value(self.to_s + other.to_s)
|
|
end
|
|
|
|
def to_s
|
|
@value
|
|
end
|
|
end
|
|
end
|