A dynamic node representing a Sass `@each` loop.
@see Sass::Tree
The parse tree for the list. @return [Script::Tree::Node]
The names of the loop variables. @return [Array<String>]
@param vars [Array<String>] The names of the loop variables @param list [Script::Tree::Node] The parse tree for the list
# File lib/sass/tree/each_node.rb, line 18 def initialize(vars, list) @vars = vars @list = list super() end