summaryrefslogtreecommitdiff
path: root/scripts/wasm2js.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/wasm2js.js')
-rw-r--r--scripts/wasm2js.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/wasm2js.js b/scripts/wasm2js.js
index 7bb8453bc..babf31267 100644
--- a/scripts/wasm2js.js
+++ b/scripts/wasm2js.js
@@ -6,12 +6,6 @@ var WebAssembly = {
Memory: function(opts) {
return {
buffer: new ArrayBuffer(opts['initial'] * 64 * 1024),
- grow: function(amount) {
- var oldBuffer = this.buffer;
- var ret = __growWasmMemory(amount);
- assert(this.buffer !== oldBuffer); // the call should have updated us
- return ret;
- }
};
},