diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-09 20:22:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-09 19:22:27 -0500 |
commit | d1685b120bf7da5ba384806153f65d90ef156b77 (patch) | |
tree | 155c87f1beae810f52fb2a9ef9ab7526fa1af990 /ext/ffi/lib.rs | |
parent | 78d430103a8f6931154ddbbe19d36f3b8630286d (diff) |
refactor(core): remove RuntimeOptions::extensions_with_js (#18099)
This commit removes "deno_core::RuntimeOptions::extensions_with_js".
Now it's embedders' responsibility to properly register extensions
that will not contains JavaScript sources when running from an existing
snapshot.
Prerequisite for https://github.com/denoland/deno/pull/18080
Diffstat (limited to 'ext/ffi/lib.rs')
-rw-r--r-- | ext/ffi/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/ffi/lib.rs b/ext/ffi/lib.rs index f93e2e121..2b90cd1c4 100644 --- a/ext/ffi/lib.rs +++ b/ext/ffi/lib.rs @@ -169,7 +169,5 @@ pub fn init_ops_and_esm<P: FfiPermissions + 'static>( } pub fn init_ops<P: FfiPermissions + 'static>(unstable: bool) -> Extension { - ops::<P>(&mut ext(), unstable) - .esm(include_js_files!("00_ffi.js",)) - .build() + ops::<P>(&mut ext(), unstable).build() } |