class Sass::Tree::Node

def each(&block)

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

Other tags:
    Yield: - node
def each(&block)
  yield self
  children.each {|c| c.each(&block)}
end