mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
46 lines
1.5 KiB
Ruby
46 lines
1.5 KiB
Ruby
require 'sass/tree/node'
|
|
|
|
module Sass::Tree
|
|
# A dynamic node representing a Sass `@for` loop.
|
|
#
|
|
# @see Sass::Tree
|
|
class ForNode < Node
|
|
# @param var [String] The name of the loop variable
|
|
# @param from [Script::Node] The parse tree for the initial expression
|
|
# @param to [Script::Node] The parse tree for the final expression
|
|
# @param exclusive [Boolean] Whether to include `to` in the loop
|
|
# or stop just before
|
|
# @param options [Hash<Symbol, Object>] An options hash;
|
|
# see [the Sass options documentation](../../Sass.html#sass_options)
|
|
def initialize(var, from, to, exclusive, options)
|
|
@var = var
|
|
@from = from
|
|
@to = to
|
|
@exclusive = exclusive
|
|
super(options)
|
|
end
|
|
|
|
protected
|
|
|
|
# Runs the child nodes once for each time through the loop,
|
|
# varying the variable each time.
|
|
#
|
|
# @param environment [Sass::Environment] The lexical environment containing
|
|
# variable and mixin values
|
|
# @return [Array<Tree::Node>] The resulting static nodes
|
|
# @see Sass::Tree
|
|
def _perform(environment)
|
|
from = @from.perform(environment).to_i
|
|
to = @to.perform(environment).to_i
|
|
range = Range.new(from, to, @exclusive)
|
|
|
|
children = []
|
|
environment = Sass::Environment.new(environment)
|
|
range.each do |i|
|
|
environment.set_local_var(@var, Sass::Script::Number.new(i))
|
|
children += perform_children(environment)
|
|
end
|
|
children
|
|
end
|
|
end
|
|
end
|