diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-06-07 19:23:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 19:23:49 -0700 |
commit | 7676221b837bbd20daf1889dbdabf3cb76721658 (patch) | |
tree | 32f5721cdcf90cf0e4316fc2ba131549c8a90f8e /src/wasm-io.h | |
parent | 3af404435b3cfa90704810370703f20921c055dd (diff) | |
download | binaryen-7676221b837bbd20daf1889dbdabf3cb76721658.tar.gz binaryen-7676221b837bbd20daf1889dbdabf3cb76721658.tar.bz2 binaryen-7676221b837bbd20daf1889dbdabf3cb76721658.zip |
wasm-opt source map support (#1557)
* support source map input in wasm-opt, refactoring the loading code into wasm-io
* use wasm-io in wasm-as
* support output source maps in wasm-opt
* add a test for wasm-opt and source maps
Diffstat (limited to 'src/wasm-io.h')
-rw-r--r-- | src/wasm-io.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wasm-io.h b/src/wasm-io.h index cbb8f36c8..2dfdbae6c 100644 --- a/src/wasm-io.h +++ b/src/wasm-io.h @@ -40,10 +40,11 @@ public: // read text void readText(std::string filename, Module& wasm); // read binary - void readBinary(std::string filename, Module& wasm); + void readBinary(std::string filename, Module& wasm, + std::string sourceMapFilename=""); // read text or binary, checking the contents for what it is - void read(std::string filename, Module& wasm); - + void read(std::string filename, Module& wasm, + std::string sourceMapFilename=""); // check whether a file is a wasm binary bool isBinaryFile(std::string filename); }; |