Class: Sass::Tree::PropNode
Overview
A static node reprenting a CSS property.
Instance Attribute Summary collapse
-
#name ⇒ Array<String, Sass::Script::Node>
The name of the property, interspersed with Script::Nodes representing
#{}
-interpolation. -
#resolved_name ⇒ String
The name of the property after any interpolated SassScript has been resolved.
-
#resolved_value ⇒ String
The value of the property after any interpolated SassScript has been resolved.
-
#tabs ⇒ Fixnum
How deep this property is indented relative to a normal property.
-
#value ⇒ Sass::Script::Node
The value of the property.
Attributes inherited from Node
#children, #filename, #has_children, #line, #options
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Compares the names and values of two properties.
-
#declaration(opts = {:old => @prop_syntax == :old}, fmt = :sass)
Computes the Sass or SCSS code for the variable declaration.
-
#initialize(name, value, prop_syntax) ⇒ PropNode
constructor
A new instance of PropNode.
-
#pseudo_class_selector_message ⇒ String
Returns a appropriate message indicating how to escape pseudo-class selectors.
Methods inherited from Node
#<<, #balance, #deep_copy, #do_extend, #each, #invisible?, #style, #to_s, #to_sass, #to_scss
Constructor Details
#initialize(name, value, prop_syntax) ⇒ PropNode
Returns a new instance of PropNode.
49 50 51 52 53 54 55 56 |
# File 'lib/sass/tree/prop_node.rb', line 49
def initialize(name, value, prop_syntax)
@name = Sass::Util.strip_string_array(
Sass::Util.merge_adjacent_strings(name))
@value = value
@tabs = 0
@prop_syntax = prop_syntax
super()
end
|
Instance Attribute Details
#name ⇒ Array<String, Sass::Script::Node>
The name of the property,
interspersed with Script::Nodes
representing #{}
-interpolation.
Any adjacent strings will be merged together.
12 13 14 |
# File 'lib/sass/tree/prop_node.rb', line 12
def name
@name
end
|
#resolved_name ⇒ String
The name of the property after any interpolated SassScript has been resolved. Only set once Visitors::Perform has been run.
19 20 21 |
# File 'lib/sass/tree/prop_node.rb', line 19
def resolved_name
@resolved_name
end
|
#resolved_value ⇒ String
The value of the property after any interpolated SassScript has been resolved. Only set once Visitors::Perform has been run.
31 32 33 |
# File 'lib/sass/tree/prop_node.rb', line 31
def resolved_value
@resolved_value
end
|
#tabs ⇒ Fixnum
How deep this property is indented relative to a normal property. This is only greater than 0 in the case that:
- This node is in a CSS tree
- The style is :nested
- This is a child property of another property
- The parent property has a value, and thus will be rendered
43 44 45 |
# File 'lib/sass/tree/prop_node.rb', line 43
def tabs
@tabs
end
|
#value ⇒ Sass::Script::Node
The value of the property.
24 25 26 |
# File 'lib/sass/tree/prop_node.rb', line 24
def value
@value
end
|
Instance Method Details
#==(other) ⇒ Boolean
Compares the names and values of two properties.
63 64 65 |
# File 'lib/sass/tree/prop_node.rb', line 63
def ==(other)
self.class == other.class && name == other.name && value == other.value && super
end
|
#declaration(opts = {:old => @prop_syntax == :old}, fmt = :sass)
Computes the Sass or SCSS code for the variable declaration. This is like Node#to_scss or Node#to_sass, except it doesn't print any child properties or a trailing semicolon.
83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/sass/tree/prop_node.rb', line 83
def declaration(opts = {:old => @prop_syntax == :old}, fmt = :sass)
name = self.name.map {|n| n.is_a?(String) ? n : "\#{#{n.to_sass(opts)}}"}.join
if name[0] == ?:
raise Sass::SyntaxError.new("The \"#{name}: #{self.class.val_to_sass(value, opts)}\" hack is not allowed in the Sass indented syntax")
end
old = opts[:old] && fmt == :sass
initial = old ? ':' : ''
mid = old ? '' : ':'
"#{initial}#{name}#{mid} #{self.class.val_to_sass(value, opts)}".rstrip
end
|
#pseudo_class_selector_message ⇒ String
Returns a appropriate message indicating how to escape pseudo-class selectors. This only applies for old-style properties with no value, so returns the empty string if this is new-style.
72 73 74 75 |
# File 'lib/sass/tree/prop_node.rb', line 72
def pseudo_class_selector_message
return "" if @prop_syntax == :new || !value.is_a?(Sass::Script::String) || !value.value.empty?
"\nIf #{declaration.dump} should be a selector, use \"\\#{declaration}\" instead."
end
|