mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
bench(op_baseline): measure Deno.core.isProxy() (#12347)
This commit is contained in:
parent
4e3068be63
commit
c4b995ffe6
1 changed files with 11 additions and 1 deletions
|
@ -47,5 +47,15 @@ fn bench_op_async(b: &mut Bencher) {
|
||||||
bench_js_async(b, r#"Deno.core.opAsync("pi_async", null);"#, setup);
|
bench_js_async(b, r#"Deno.core.opAsync("pi_async", null);"#, setup);
|
||||||
}
|
}
|
||||||
|
|
||||||
benchmark_group!(benches, bench_op_pi_json, bench_op_nop, bench_op_async);
|
fn bench_is_proxy(b: &mut Bencher) {
|
||||||
|
bench_js_sync(b, r#"Deno.core.isProxy(42);"#, setup);
|
||||||
|
}
|
||||||
|
|
||||||
|
benchmark_group!(
|
||||||
|
benches,
|
||||||
|
bench_op_pi_json,
|
||||||
|
bench_op_nop,
|
||||||
|
bench_op_async,
|
||||||
|
bench_is_proxy
|
||||||
|
);
|
||||||
bench_or_profile!(benches);
|
bench_or_profile!(benches);
|
||||||
|
|
Loading…
Reference in a new issue