class Psych::Visitors::DepthFirst

def initialize block

def initialize block
  @block = block
end

def nary o

def nary o
  o.children.each { |x| visit x }
  @block.call o
end

def terminal o

def terminal o
  @block.call o
end