class Sass::Tree::Node

def each

Other tags:
    Yieldparam: node - a node in the tree

Other tags:
    Yield: - node
def each
  yield self
  children.each {|c| c.each {|n| yield n}}
end