diff --git a/boa/benches/exec.rs b/boa/benches/exec.rs index 5e53c6f90e2..97ca1150373 100644 --- a/boa/benches/exec.rs +++ b/boa/benches/exec.rs @@ -334,7 +334,9 @@ static ARRAY_CONCAT: &str = include_str!("bench_scripts/array_concat.js"); fn array_concat(c: &mut Criterion) { let mut context = Context::new(); - let nodes = Parser::new(ARRAY_CONCAT.as_bytes(), false).parse_all().unwrap(); + let nodes = Parser::new(ARRAY_CONCAT.as_bytes(), false) + .parse_all() + .unwrap(); c.bench_function("Array concat (Execution)", move |b| { b.iter(|| black_box(&nodes).run(&mut context).unwrap()) });