Class: Sass::Tree::RuleNode
Overview
A static node reprenting a CSS rule.
Constant Summary collapse
- PARENT =
The character used to include the parent selector
'&'
Instance Attribute Summary collapse
-
#group_end ⇒ Boolean
Whether or not this rule is the last rule in a nested group.
-
#parsed_rules ⇒ Selector::CommaSequence
The CSS selector for this rule, without any unresolved interpolation but with parent references still intact.
-
#resolved_rules ⇒ Selector::CommaSequence
The CSS selector for this rule, without any unresolved interpolation or parent references.
-
#rule ⇒ Array<String, Sass::Script::Node>
The CSS selector for this rule, interspersed with Script::Nodes representing
#{}
-interpolation. -
#stack_trace ⇒ Array<String>
The stack trace.
-
#tabs ⇒ Fixnum
How deep this rule is indented relative to a base-level rule.
Attributes inherited from Node
#children, #filename, #has_children, #line, #options
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Compares the contents of two rules.
-
#add_rules(node)
Adds another RuleNode's rules to this one's.
-
#continued? ⇒ Boolean
Whether or not this rule is continued on the next line.
-
#debug_info ⇒ {#to_s => #to_s}
A hash that will be associated with this rule in the CSS document if the
:debug_info
option is enabled. -
#do_extend(extends)
Extends this Rule's selector with the given
extends
. -
#filename=(filename)
If we've precached the parsed selector, set the filename on it, too.
-
#initialize(rule) ⇒ RuleNode
constructor
A new instance of RuleNode.
-
#line=(line)
If we've precached the parsed selector, set the line on it, too.
Methods inherited from Node
#<<, #balance, #deep_copy, #each, #invisible?, #style, #to_s, #to_sass, #to_scss
Constructor Details
#initialize(rule) ⇒ RuleNode
Returns a new instance of RuleNode.
62 63 64 65 66 67 68 |
# File 'lib/sass/tree/rule_node.rb', line 62
def initialize(rule)
merged = Sass::Util.merge_adjacent_strings(rule)
@rule = Sass::Util.strip_string_array(merged)
@tabs = 0
try_to_parse_non_interpolated_rules
super()
end
|
Instance Attribute Details
#group_end ⇒ Boolean
Whether or not this rule is the last rule in a nested group. This is only set in a CSS tree.
51 52 53 |
# File 'lib/sass/tree/rule_node.rb', line 51
def group_end
@group_end
end
|
#parsed_rules ⇒ Selector::CommaSequence
The CSS selector for this rule, without any unresolved interpolation but with parent references still intact. It's only set once Tree::Node#perform has been called.
26 27 28 |
# File 'lib/sass/tree/rule_node.rb', line 26
def parsed_rules
@parsed_rules
end
|
#resolved_rules ⇒ Selector::CommaSequence
The CSS selector for this rule, without any unresolved interpolation or parent references. It's only set once Visitors::Cssize has been run.
33 34 35 |
# File 'lib/sass/tree/rule_node.rb', line 33
def resolved_rules
@resolved_rules
end
|
#rule ⇒ Array<String, Sass::Script::Node>
The CSS selector for this rule,
interspersed with Script::Nodes
representing #{}
-interpolation.
Any adjacent strings will be merged together.
18 19 20 |
# File 'lib/sass/tree/rule_node.rb', line 18
def rule
@rule
end
|
#stack_trace ⇒ Array<String>
The stack trace. This is only readable in a CSS tree as it is written during the perform step and only when the :trace_selectors option is set.
58 59 60 |
# File 'lib/sass/tree/rule_node.rb', line 58
def stack_trace
@stack_trace
end
|
#tabs ⇒ Fixnum
How deep this rule is indented relative to a base-level rule. 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 rule of another rule
- The parent rule has properties, and thus will be rendered
45 46 47 |
# File 'lib/sass/tree/rule_node.rb', line 45
def tabs
@tabs
end
|
Instance Method Details
#==(other) ⇒ Boolean
Compares the contents of two rules.
87 88 89 |
# File 'lib/sass/tree/rule_node.rb', line 87
def ==(other)
self.class == other.class && rule == other.rule && super
end
|
#add_rules(node)
Adds another Sass::Tree::RuleNode's rules to this one's.
94 95 96 97 98 |
# File 'lib/sass/tree/rule_node.rb', line 94
def add_rules(node)
@rule = Sass::Util.strip_string_array(
Sass::Util.merge_adjacent_strings(@rule + ["\n"] + node.rule))
try_to_parse_non_interpolated_rules
end
|
#continued? ⇒ Boolean
Returns Whether or not this rule is continued on the next line.
101 102 103 104 |
# File 'lib/sass/tree/rule_node.rb', line 101
def continued?
last = @rule.last
last.is_a?(String) && last[-1] == ?,
end
|
#debug_info ⇒ {#to_s => #to_s}
A hash that will be associated with this rule in the CSS document
if the :debug_info
option is enabled.
This data is used by e.g. the FireSass Firebug extension.
120 121 122 123 |
# File 'lib/sass/tree/rule_node.rb', line 120
def debug_info
{:filename => filename && ("file://" + URI.escape(File.expand_path(filename))),
:line => self.line}
end
|
#do_extend(extends)
Extends this Rule's selector with the given extends
.
109 110 111 112 113 |
# File 'lib/sass/tree/rule_node.rb', line 109
def do_extend(extends)
node = dup
node.resolved_rules = resolved_rules.do_extend(extends)
node
end
|
#filename=(filename)
If we've precached the parsed selector, set the filename on it, too.
77 78 79 80 |
# File 'lib/sass/tree/rule_node.rb', line 77
def filename=(filename)
@parsed_rules.filename = filename if @parsed_rules
super
end
|
#line=(line)
If we've precached the parsed selector, set the line on it, too.
71 72 73 74 |
# File 'lib/sass/tree/rule_node.rb', line 71
def line=(line)
@parsed_rules.line = line if @parsed_rules
super
end
|