1pub fn run() { 2 let matches = build_matches(); 3 4 if try_run_standard_json(&matches) { 5 return; 6 } 7 8 run_single_file(&matches); 9} 10