summaryrefslogtreecommitdiff
path: root/test/wasm2js/dot_import.2asm.js.opt
Commit message (Collapse)AuthorAgeFilesLines
* wasm2js: Skip heap creation in the absence of wasm memory. NFC (#3167)Sam Clegg2020-09-241-11/+17
| | | | | Also, format the asmFunc call to make it more readable in the ES6 modules case.
* wasm2js: Support exported tables (#3152)Sam Clegg2020-09-211-1/+0
|
* wasm2js: Mangle import names for JS (#2267)Alon Zakai2019-07-281-0/+37
This fixes names that would be invalid in JS, like a.b. Turns out the Go compiler emits wasm with such imports. Also add some docs on how to use wasm2js. Fixes #2263