class Sass::Tree::ForNode
@see Sass::Tree
A dynamic node representing a Sass ‘@for` loop.
def initialize(var, from, to, exclusive)
-
exclusive
(Boolean
) -- See \{#exclusive} -
to
(Script::Node
) -- See \{#to} -
from
(Script::Node
) -- See \{#from} -
var
(String
) -- See \{#var}
def initialize(var, from, to, exclusive) @var = var @from = from @to = to @exclusive = exclusive super() end