diff options
author | Sam Clegg <sbc@chromium.org> | 2020-09-21 16:39:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 16:39:46 -0700 |
commit | ee00f647750f23e6c24e67424bafab39b244c835 (patch) | |
tree | e99f91b24cda95a3292eccb92fec09a0e168ca66 /scripts/test | |
parent | 4d6e9ea2d1796c984e3ebc38d0b6abdf8049941a (diff) | |
download | binaryen-ee00f647750f23e6c24e67424bafab39b244c835.tar.gz binaryen-ee00f647750f23e6c24e67424bafab39b244c835.tar.bz2 binaryen-ee00f647750f23e6c24e67424bafab39b244c835.zip |
wasm2js: Support exported tables (#3152)
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/env.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/test/env.js b/scripts/test/env.js index 0eb3f06f4..4dcfa7d2b 100644 --- a/scripts/test/env.js +++ b/scripts/test/env.js @@ -1,5 +1,5 @@ - -export const FUNCTION_TABLE = []; +// This is the name by which the tests import the wasm table. +export const table = []; var tempRet0 = 0; |