diff options
author | Daniel Wirtz <dcode@dcode.io> | 2017-11-22 18:35:45 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2017-11-22 09:35:45 -0800 |
commit | 94cbe63149248e251580ef95a6d3a31faf00a238 (patch) | |
tree | afce67e1b95f29eccac259f156185e982d6e3bb0 /test/binaryen.js/hello-world.js | |
parent | 13ec76dfbc1c72a5e77d6a33fca5bf349308162d (diff) | |
download | binaryen-94cbe63149248e251580ef95a6d3a31faf00a238.tar.gz binaryen-94cbe63149248e251580ef95a6d3a31faf00a238.tar.bz2 binaryen-94cbe63149248e251580ef95a6d3a31faf00a238.zip |
Provide AddImport/AddExport for each element in the C-API (#1292)
* Provide AddImport/AddExport for each element in the C-API
Diffstat (limited to 'test/binaryen.js/hello-world.js')
-rw-r--r-- | test/binaryen.js/hello-world.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/binaryen.js/hello-world.js b/test/binaryen.js/hello-world.js index c08e67342..1cc5b89b7 100644 --- a/test/binaryen.js/hello-world.js +++ b/test/binaryen.js/hello-world.js @@ -22,7 +22,7 @@ module.addFunction('adder', iii, [], ret); // Export the function, so we can call it later (for simplicity we // export it as the same name as it has internally) -module.addExport('adder', 'adder'); +module.addFunctionExport('adder', 'adder'); // Print out the text console.log(module.emitText()); |