Class: Sass::Tree::ForNode
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(var, from, to, exclusive, options) ⇒ ForNode
constructor
A new instance of ForNode.
Methods inherited from Node
#<<, #==, #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, ) @var = var @from = from @to = to @exclusive = exclusive super() end |