Class: Sass::Tree::VariableNode
- Defined in:
- lib/sass/tree/variable_node.rb
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(name, expr, guarded, options) ⇒ VariableNode
constructor
A new instance of VariableNode.
Methods inherited from Node
#<<, #==, #last, #perform, #to_s, #to_sass
Constructor Details
#initialize(name, expr, guarded, options) ⇒ VariableNode
Returns a new instance of VariableNode.
4 5 6 7 8 9 |
# File 'lib/sass/tree/variable_node.rb', line 4 def initialize(name, expr, guarded, ) @name = name @expr = expr @guarded = guarded super() end |