mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fdf0ede2ac
This patch does not work with the recent bundler changes (#3325).
Unfortunately I didn't merge master before landing this patch. It has
something to do with console.log not working inside the compiler worker.
This reverts commit fd62379eaf
.
24 lines
465 B
Rust
24 lines
465 B
Rust
// Copyright 2018-2019 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 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 process;
|
|
pub mod random;
|
|
pub mod repl;
|
|
pub mod resources;
|
|
pub mod timers;
|
|
pub mod tls;
|
|
pub mod workers;
|