mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Loader: support .wasm imports (#3328)
* loader: support .wasm imports * http_server: true * Support named exports * Clippy
This commit is contained in:
parent
fdf0ede2ac
commit
4189cc1ab5
20 changed files with 388 additions and 9 deletions
|
@ -5,10 +5,12 @@ use futures::Future;
|
|||
mod js;
|
||||
mod json;
|
||||
mod ts;
|
||||
mod wasm;
|
||||
|
||||
pub use js::JsCompiler;
|
||||
pub use json::JsonCompiler;
|
||||
pub use ts::TsCompiler;
|
||||
pub use wasm::WasmCompiler;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct CompiledModule {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue