From 8d527c4c73665148076b97803bbb917fd6da85ce Mon Sep 17 00:00:00 2001 From: nd419 <5161147+neeldug@users.noreply.github.com> Date: Wed, 28 Jul 2021 00:43:08 +0100 Subject: [PATCH] fmt --- boa/benches/exec.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()) });