class Sass::Tree::ForNode

def initialize(var, from, to, exclusive)

Parameters:
  • exclusive (Boolean) -- Whether to include `to` in the loop
  • to (Script::Node) -- The parse tree for the final expression
  • from (Script::Node) -- The parse tree for the initial expression
  • var (String) -- The name of the loop variable
def initialize(var, from, to, exclusive)
  @var = var
  @from = from
  @to = to
  @exclusive = exclusive
  super()
end