@@ -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
7575fn 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