mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
7966bf14c0
* split ops/worker.rs into ops/worker_host.rs and ops/web_worker.rs * refactor js/workers.ts and factor out js/worker_main.ts - entry point for WebWorker runtime * BREAKING CHANGE: remove support for blob: URL in Worker * BREAKING CHANGE: remove Deno namespace support and noDenoNamespace option in Worker constructor * introduce WebWorker struct which is a stripped down version of cli::Worker
27 lines
543 B
Rust
27 lines
543 B
Rust
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
mod dispatch_json;
|
|
mod dispatch_minimal;
|
|
|
|
pub use dispatch_json::json_op;
|
|
pub use dispatch_json::JsonOp;
|
|
pub use dispatch_minimal::minimal_op;
|
|
pub use dispatch_minimal::MinimalOp;
|
|
|
|
pub mod compiler;
|
|
pub mod errors;
|
|
pub mod fetch;
|
|
pub mod files;
|
|
pub mod fs;
|
|
pub mod io;
|
|
pub mod net;
|
|
pub mod os;
|
|
pub mod permissions;
|
|
pub mod plugins;
|
|
pub mod process;
|
|
pub mod random;
|
|
pub mod repl;
|
|
pub mod resources;
|
|
pub mod timers;
|
|
pub mod tls;
|
|
pub mod web_worker;
|
|
pub mod worker_host;
|