summaryrefslogtreecommitdiff
path: root/src/wasm-io.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-03-18 17:30:33 -0700
committerGitHub <noreply@github.com>2019-03-18 17:30:33 -0700
commita2dd7c4feae3c4da3a1f8de90171795d12eb8879 (patch)
tree6149d980d99842952876518a59dc31df1b91eb39 /src/wasm-io.h
parent1cd0157985c7f09e81aee4fb79511888212559f2 (diff)
downloadbinaryen-a2dd7c4feae3c4da3a1f8de90171795d12eb8879.tar.gz
binaryen-a2dd7c4feae3c4da3a1f8de90171795d12eb8879.tar.bz2
binaryen-a2dd7c4feae3c4da3a1f8de90171795d12eb8879.zip
Allow tools to read from stdin (#1950)
This is necessary to write tests that don't require temporary files, such as in #1948, and is generally useful.
Diffstat (limited to 'src/wasm-io.h')
-rw-r--r--src/wasm-io.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wasm-io.h b/src/wasm-io.h
index 2dfdbae6c..6d8dcc6e5 100644
--- a/src/wasm-io.h
+++ b/src/wasm-io.h
@@ -42,11 +42,15 @@ public:
// read binary
void readBinary(std::string filename, Module& wasm,
std::string sourceMapFilename="");
- // read text or binary, checking the contents for what it is
+ // read text or binary, checking the contents for what it is. If `filename` is
+ // empty, read from stdin.
void read(std::string filename, Module& wasm,
std::string sourceMapFilename="");
// check whether a file is a wasm binary
bool isBinaryFile(std::string filename);
+
+private:
+ void readStdin(Module& wasm, std::string sourceMapFilename);
};
class ModuleWriter : public ModuleIO {