Class: Sass::Tree::VariableNode

Inherits:
Node show all
Defined in:
lib/sass/tree/variable_node.rb

Instance Attribute Summary

Attributes inherited from Node

#children, #filename, #line

Instance Method Summary collapse

Methods inherited from Node

#<<, #==, #invisible?, #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, options)
  @name = name
  @expr = expr
  @guarded = guarded
  super(options)
end