@@ -60,17 +60,17 @@ impl TheBencher for SwcBencher {
60
60
}
61
61
}
62
62
63
- struct BiomeBencher ;
63
+ // struct BiomeBencher;
64
64
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>;
67
67
68
- const ID : & ' static str = "biome" ;
68
+ // const ID: &'static str = "biome";
69
69
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
+ // }
74
74
75
75
fn parser_benchmark ( c : & mut Criterion ) {
76
76
let filenames = [ "typescript.js" , "cal.com.tsx" ] ;
@@ -80,7 +80,7 @@ fn parser_benchmark(c: &mut Criterion) {
80
80
let mut g = c. benchmark_group ( filename) ;
81
81
OxcBencher :: bench ( & mut g, & path, & source) ;
82
82
SwcBencher :: bench ( & mut g, & path, & source) ;
83
- BiomeBencher :: bench ( & mut g, & path, & source) ;
83
+ // BiomeBencher::bench(&mut g, &path, &source);
84
84
g. finish ( ) ;
85
85
}
86
86
}
0 commit comments