summaryrefslogtreecommitdiff
path: root/ext/webidl/benches
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-03-18 18:44:28 +0530
committerGitHub <noreply@github.com>2023-03-18 13:14:28 +0000
commit8af0c8351935ea7c6c0441055d5164908322c9d6 (patch)
treea61be71ff9ac5379f8e992927bd096c3e6a0ad8f /ext/webidl/benches
parent5223f3d9b68921179db8cd6b00babd711d4f06ff (diff)
perf(core): use static specifier in ExtensionFileSource (#18264)
Closes #18085 --------- Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/webidl/benches')
-rw-r--r--ext/webidl/benches/dict.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/webidl/benches/dict.rs b/ext/webidl/benches/dict.rs
index 89a83ddaa..1409195c2 100644
--- a/ext/webidl/benches/dict.rs
+++ b/ext/webidl/benches/dict.rs
@@ -14,7 +14,7 @@ fn setup() -> Vec<Extension> {
deno_webidl::deno_webidl::init_ops_and_esm(),
Extension::builder("deno_webidl_bench")
.esm(vec![ExtensionFileSource {
- specifier: "ext:setup".to_string(),
+ specifier: "ext/deno_webidl_bench:setup",
code: ExtensionFileSourceCode::IncludedInBinary(include_str!(
"dict.js"
)),