From 8d7e6f3cdd1040b1b3360475a7a3f42b42b051f4 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 20 Dec 2017 08:22:30 -0800 Subject: [PATCH] Ok, let's actually expose memory May as well have it typed! --- crates/wasm-bindgen-cli-support/src/ts.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/wasm-bindgen-cli-support/src/ts.rs b/crates/wasm-bindgen-cli-support/src/ts.rs index b3ee11dc..6a296b35 100644 --- a/crates/wasm-bindgen-cli-support/src/ts.rs +++ b/crates/wasm-bindgen-cli-support/src/ts.rs @@ -368,10 +368,6 @@ impl Js { if self.wasm_exports_bound.contains(export) { continue } - // this is a special case, ignore it for now - if export == "memory" { - continue - } if extra_exports_interface.len() == 0 { extra_exports_interface.push_str("interface ExtraExports {\n");