class Parser::Runner

def process_all_input

def process_all_input
  parsing_time =
    Benchmark.measure do
      process_fragments
      process_files
    end
  if @benchmark
    report_with_time(parsing_time)
  end
end