Class: Sass::Script::Tree::Selector
- Inherits:
-
Node
- Object
- Node
- Sass::Script::Tree::Selector
- Defined in:
- .ruby-sass/lib/sass/script/tree/selector.rb
Overview
A SassScript node that will resolve to the current selector.
Instance Attribute Summary
Attributes inherited from Node
#filename, #line, #options, #source_range
Instance Method Summary (collapse)
- #children ⇒ Object
- #deep_copy ⇒ Object
-
#initialize ⇒ Selector
constructor
A new instance of Selector.
- #to_sass(opts = {}) ⇒ Object
Methods inherited from Node
Constructor Details
#initialize ⇒ Selector
Returns a new instance of Selector
4 |
# File '.ruby-sass/lib/sass/script/tree/selector.rb', line 4 def initialize; end |
Constructor Details
#initialize ⇒ Selector
Returns a new instance of Selector
4 |
# File '.ruby-sass/lib/sass/script/tree/selector.rb', line 4 def initialize; end |
Instance Method Details
#children ⇒ Object
6 7 8 |
# File '.ruby-sass/lib/sass/script/tree/selector.rb', line 6 def children [] end |
#deep_copy ⇒ Object
14 15 16 |
# File '.ruby-sass/lib/sass/script/tree/selector.rb', line 14 def deep_copy dup end |
#to_sass(opts = {}) ⇒ Object
10 11 12 |
# File '.ruby-sass/lib/sass/script/tree/selector.rb', line 10 def to_sass(opts = {}) '&' end |