mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
56f58a047e
Migrations: - Error registration no longer required for Interrupted or BadResource (these are core exception) - `include_js_files!`/`ExtensionFileSource` changes
35 lines
929 B
Rust
35 lines
929 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_bench_util::bench_js_sync;
|
|
use deno_bench_util::bench_or_profile;
|
|
use deno_bench_util::bencher::benchmark_group;
|
|
use deno_bench_util::bencher::Bencher;
|
|
|
|
use deno_core::Extension;
|
|
|
|
fn setup() -> Vec<Extension> {
|
|
deno_core::extension!(
|
|
bench_setup,
|
|
esm_entry_point = "ext:bench_setup/setup",
|
|
esm = ["ext:bench_setup/setup" = {
|
|
source = r#"
|
|
import { URL } from "ext:deno_url/00_url.js";
|
|
globalThis.URL = URL;
|
|
"#
|
|
}]
|
|
);
|
|
|
|
vec![
|
|
deno_webidl::deno_webidl::init_ops_and_esm(),
|
|
deno_console::deno_console::init_ops_and_esm(),
|
|
deno_url::deno_url::init_ops_and_esm(),
|
|
bench_setup::init_ops_and_esm(),
|
|
]
|
|
}
|
|
|
|
fn bench_url_parse(b: &mut Bencher) {
|
|
bench_js_sync(b, r#"new URL(`http://www.google.com/`);"#, setup);
|
|
}
|
|
|
|
benchmark_group!(benches, bench_url_parse,);
|
|
bench_or_profile!(benches);
|