class Sass::Tree::EachNode

A dynamic node representing a Sass ‘@each` loop.

@see Sass::Tree

Attributes

list[RW]

The parse tree for the list. @param [Script::Node]

var[R]

The name of the loop variable. @return [String]

Public Class Methods

new(var, list) click to toggle source

@param var [String] The name of the loop variable @param list [Script::Node] The parse tree for the list

Calls superclass method
# File lib/sass/tree/each_node.rb, line 18
def initialize(var, list)
  @var = var
  @list = list
  super()
end