summaryrefslogtreecommitdiff
path: root/ext/webidl
diff options
context:
space:
mode:
authorBartek Iwańczuk <biwanczuk@gmail.com>2023-03-18 15:25:28 -0400
committerGitHub <noreply@github.com>2023-03-18 20:25:28 +0100
commitf6c364fcf6d9eb341d982f7b2084166ca2d25822 (patch)
treeeaaa9eefeca0a68efd09750626082761021d090f /ext/webidl
parent00f4c0df97a7b47495e077a8237142995cb78077 (diff)
Revert "perf(core): use static specifier in ExtensionFileSource (#182… (#18270)
…64)" This reverts commit 8af0c8351935ea7c6c0441055d5164908322c9d6. Causes bench stage to fail on CI.
Diffstat (limited to 'ext/webidl')
-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 1409195c2..89a83ddaa 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/deno_webidl_bench:setup",
+ specifier: "ext:setup".to_string(),
code: ExtensionFileSourceCode::IncludedInBinary(include_str!(
"dict.js"
)),