From 28a4f3d0f5383695b1d49ccdc8b0f799a715b2c2 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sun, 25 Jun 2023 08:35:31 +0100 Subject: Reland "refactor(core): cleanup feature flags for js source inclusion" (#19519) Relands #19463. This time the `ExtensionFileSourceCode` enum is preserved, so this effectively just splits feature `include_js_for_snapshotting` into `exclude_js_sources` and `runtime_js_sources`, adds a `force_include_js_sources` option on `extension!()`, and unifies `ext::Init_ops_and_esm()` and `ext::init_ops()` into `ext::init()`. --- ext/webidl/benches/dict.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/webidl/benches') diff --git a/ext/webidl/benches/dict.rs b/ext/webidl/benches/dict.rs index b3d95c8a3..1b2fcd2e5 100644 --- a/ext/webidl/benches/dict.rs +++ b/ext/webidl/benches/dict.rs @@ -11,7 +11,7 @@ use deno_core::ExtensionFileSourceCode; fn setup() -> Vec { vec![ - deno_webidl::deno_webidl::init_ops_and_esm(), + deno_webidl::deno_webidl::init_ext(), Extension::builder("deno_webidl_bench") .esm(vec![ExtensionFileSource { specifier: "ext:deno_webidl_bench/setup.js", -- cgit v1.2.3