diff options
author | Sam Clegg <sbc@chromium.org> | 2019-12-04 13:09:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-04 13:09:41 -0600 |
commit | 19d929cedb4dcf8b646dbbb58bfe59853b5d08e5 (patch) | |
tree | ea264ba70cba4f76af07ef0e2174cd6257c7abe9 /src/wasm-io.h | |
parent | f346478e1eb510d61c603eb6533d2c01f413e47a (diff) | |
download | binaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.tar.gz binaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.tar.bz2 binaryen-19d929cedb4dcf8b646dbbb58bfe59853b5d08e5.zip |
Convert to using DEBUG macros (#2497)
This means that debugging/tracing can now be enabled and controlled
centrally without managing and passing state around the codebase.
Diffstat (limited to 'src/wasm-io.h')
-rw-r--r-- | src/wasm-io.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/wasm-io.h b/src/wasm-io.h index 9c772f115..ad6b358fd 100644 --- a/src/wasm-io.h +++ b/src/wasm-io.h @@ -27,15 +27,7 @@ namespace wasm { -class ModuleIO { -protected: - bool debug = false; - -public: - void setDebug(bool debug_) { debug = debug_; } -}; - -class ModuleReader : public ModuleIO { +class ModuleReader { public: // read text void readText(std::string filename, Module& wasm); @@ -54,7 +46,7 @@ private: void readStdin(Module& wasm, std::string sourceMapFilename); }; -class ModuleWriter : public ModuleIO { +class ModuleWriter { bool binary = true; bool debugInfo = false; std::string symbolMap; |