class Raabro::Tree

def subgather(name=nil, acc=[])

def subgather(name=nil, acc=[])
  @children.each { |c| c.gather(name, acc) }
  acc
end