# File test/test_parse_tree.rb, line 22
  def process(input) # makes it play with with ParseTreeTestCase (FIX?)
    # um. kinda stupid, but cleaner
    case input
    when Array then
      ParseTree.translate(*input)
    else
      ParseTree.translate(input)
    end
  end