Skip to content

Commit f387af5

Browse files
committed
omit biome from bench
1 parent 0cf1554 commit f387af5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

benches/parser.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ impl TheBencher for SwcBencher {
6060
}
6161
}
6262

63-
struct BiomeBencher;
63+
// struct BiomeBencher;
6464

65-
impl TheBencher for BiomeBencher {
66-
type ParseOutput = biome_js_parser::Parse<biome_js_syntax::AnyJsRoot>;
65+
// impl TheBencher for BiomeBencher {
66+
// type ParseOutput = biome_js_parser::Parse<biome_js_syntax::AnyJsRoot>;
6767

68-
const ID: &'static str = "biome";
68+
// const ID: &'static str = "biome";
6969

70-
fn parse(path: &Path, source: &str) -> Self::ParseOutput {
71-
bench_parser::biome::parse(path, source)
72-
}
73-
}
70+
// fn parse(path: &Path, source: &str) -> Self::ParseOutput {
71+
// bench_parser::biome::parse(path, source)
72+
// }
73+
// }
7474

7575
fn parser_benchmark(c: &mut Criterion) {
7676
let filenames = ["typescript.js", "cal.com.tsx"];
@@ -80,7 +80,7 @@ fn parser_benchmark(c: &mut Criterion) {
8080
let mut g = c.benchmark_group(filename);
8181
OxcBencher::bench(&mut g, &path, &source);
8282
SwcBencher::bench(&mut g, &path, &source);
83-
BiomeBencher::bench(&mut g, &path, &source);
83+
// BiomeBencher::bench(&mut g, &path, &source);
8484
g.finish();
8585
}
8686
}

0 commit comments

Comments
 (0)