summaryrefslogtreecommitdiff
path: root/op_crates/web/lib.rs
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-04-28 18:41:50 +0200
committerGitHub <noreply@github.com>2021-04-28 18:41:50 +0200
commit0260b488fbba9a43c64641428d3603b8761067a4 (patch)
tree66ce487f9241a3b91942dd048c7e43cb192bf9e8 /op_crates/web/lib.rs
parentb28f9445aae85dbf86033300cfcb55e404529a23 (diff)
core: introduce extensions (#9800)
Extensions allow declarative extensions to "JsRuntime" (ops, state, JS or middleware). This allows for: - `op_crates` to be plug-and-play & self-contained, reducing complexity leaked to consumers - op middleware (like metrics_op) to be opt-in and for new middleware (unstable, tracing,...) - `MainWorker` and `WebWorker` to be composable, allowing users to extend workers with their ops whilst benefiting from the other infrastructure (inspector, etc...) In short extensions improve deno's modularity, reducing complexity and leaky abstractions for embedders and the internal codebase.
Diffstat (limited to 'op_crates/web/lib.rs')
-rw-r--r--op_crates/web/lib.rs53
1 files changed, 14 insertions, 39 deletions
diff --git a/op_crates/web/lib.rs b/op_crates/web/lib.rs
index a609dc4cd..7fd8221eb 100644
--- a/op_crates/web/lib.rs
+++ b/op_crates/web/lib.rs
@@ -1,47 +1,22 @@
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-use deno_core::JsRuntime;
+use deno_core::include_js_files;
+use deno_core::Extension;
use std::path::PathBuf;
/// Load and execute the javascript code.
-pub fn init(isolate: &mut JsRuntime) {
- let files = vec![
- (
- "deno:op_crates/web/00_infra.js",
- include_str!("00_infra.js"),
- ),
- (
- "deno:op_crates/web/01_dom_exception.js",
- include_str!("01_dom_exception.js"),
- ),
- (
- "deno:op_crates/web/01_mimesniff.js",
- include_str!("01_mimesniff.js"),
- ),
- (
- "deno:op_crates/web/02_event.js",
- include_str!("02_event.js"),
- ),
- (
- "deno:op_crates/web/03_abort_signal.js",
- include_str!("03_abort_signal.js"),
- ),
- (
- "deno:op_crates/web/04_global_interfaces.js",
- include_str!("04_global_interfaces.js"),
- ),
- (
- "deno:op_crates/web/08_text_encoding.js",
- include_str!("08_text_encoding.js"),
- ),
- (
- "deno:op_crates/web/12_location.js",
- include_str!("12_location.js"),
- ),
- ];
- for (url, source_code) in files {
- isolate.execute(url, source_code).unwrap();
- }
+pub fn init() -> Extension {
+ Extension::pure_js(include_js_files!(
+ prefix "deno:op_crates/web",
+ "00_infra.js",
+ "01_dom_exception.js",
+ "01_mimesniff.js",
+ "02_event.js",
+ "03_abort_signal.js",
+ "04_global_interfaces.js",
+ "08_text_encoding.js",
+ "12_location.js",
+ ))
}
pub fn get_declaration() -> PathBuf {