Class: Sass::Tree::ForNode

Inherits:
Node show all
Defined in:
lib/sass/tree/for_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(var, from, to, exclusive, options) ⇒ ForNode

Returns a new instance of ForNode.



5
6
7
8
9
10
11
# File 'lib/sass/tree/for_node.rb', line 5

def initialize(var, from, to, exclusive, options)
  @var = var
  @from = from
  @to = to
  @exclusive = exclusive
  super(options)
end