gems.sass-3.2.8.lib.sass.script.list.rb Maven / Gradle / Ivy
Go to download
Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector
inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a
web-framework plugin.
This is a repackaged GEM in a JAR format of the sass-lang.gem package. The sass-gems package version
follows the sass-lang.gem versions located http://rubyforge.org/frs/?group_id=9702. Simply change
the version of this package to download and repackage the same GEM version.
module Sass::Script
# A SassScript object representing a CSS list.
# This includes both comma-separated lists and space-separated lists.
class List < Literal
# The Ruby array containing the contents of the list.
#
# @return [Array]
attr_reader :value
alias_method :children, :value
alias_method :to_a, :value
# The operator separating the values of the list.
# Either `:comma` or `:space`.
#
# @return [Symbol]
attr_reader :separator
# Creates a new list.
#
# @param value [Array] See \{#value}
# @param separator [String] See \{#separator}
def initialize(value, separator)
super(value)
@separator = separator
end
# @see Node#deep_copy
def deep_copy
node = dup
node.instance_variable_set('@value', value.map {|c| c.deep_copy})
node
end
# @see Node#eq
def eq(other)
Sass::Script::Bool.new(
other.is_a?(List) && self.value == other.value &&
self.separator == other.separator)
end
# @see Node#to_s
def to_s(opts = {})
raise Sass::SyntaxError.new("() isn't a valid CSS value.") if value.empty?
return value.reject {|e| e.is_a?(Null) || e.is_a?(List) && e.value.empty?}.map {|e| e.to_s(opts)}.join(sep_str)
end
# @see Node#to_sass
def to_sass(opts = {})
return "()" if value.empty?
precedence = Sass::Script::Parser.precedence_of(separator)
value.reject {|e| e.is_a?(Null)}.map do |v|
if v.is_a?(List) && Sass::Script::Parser.precedence_of(v.separator) <= precedence
"(#{v.to_sass(opts)})"
else
v.to_sass(opts)
end
end.join(sep_str(nil))
end
# @see Node#inspect
def inspect
"(#{to_sass})"
end
protected
# @see Node#_perform
def _perform(environment)
list = Sass::Script::List.new(
value.map {|e| e.perform(environment)},
separator)
list.options = self.options
list
end
private
def sep_str(opts = self.options)
return ' ' if separator == :space
return ',' if opts && opts[:style] == :compressed
return ', '
end
end
end