mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
a1cd2a5915
This commit changes definition of "ExtensionFileSource", by changing "code" field to being "ExtensionFileSourceCode" enum. Currently the enum has only a single variant "IncludedInBinary". It is done in preparation to allow embedders to decide if they want to include the source code in the binary when snapshotting (in most cases they shouldn't do that). In the follow up commit we'll add more variants to "ExtensionFileSourceCode". "include_js_files_dir!" macro was removed in favor "include_js_files!" macro which can now accept "dir" option.
34 lines
941 B
Rust
34 lines
941 B
Rust
// Copyright 2018-2023 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;
|
|
use deno_core::ExtensionFileSource;
|
|
use deno_core::ExtensionFileSourceCode;
|
|
|
|
fn setup() -> Vec<Extension> {
|
|
vec![
|
|
deno_webidl::init(),
|
|
deno_url::init(),
|
|
Extension::builder("bench_setup")
|
|
.esm(vec![ExtensionFileSource {
|
|
specifier: "internal:setup".to_string(),
|
|
code: ExtensionFileSourceCode::IncludedInBinary(
|
|
r#"import { URL } from "internal:deno_url/00_url.js";
|
|
globalThis.URL = URL;
|
|
"#,
|
|
),
|
|
}])
|
|
.build(),
|
|
]
|
|
}
|
|
|
|
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);
|