summaryrefslogtreecommitdiff
path: root/src/tools/wasm-shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm-shell.cpp')
-rw-r--r--src/tools/wasm-shell.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/tools/wasm-shell.cpp b/src/tools/wasm-shell.cpp
index e2709b8ae..3fe8b3505 100644
--- a/src/tools/wasm-shell.cpp
+++ b/src/tools/wasm-shell.cpp
@@ -444,11 +444,18 @@ int main(int argc, const char* argv[]) {
options.parse(argc, argv);
auto input = read_file<std::string>(infile, Flags::Text);
- Lexer lexer(input);
+ // Check that we can parse the script correctly with the new parser.
+ auto script = WATParser::parseScript(input);
+ if (auto* err = script.getErr()) {
+ std::cerr << err->msg << '\n';
+ exit(1);
+ }
+
+ Lexer lexer(input);
auto result = Shell(options).parseAndRun(lexer);
if (auto* err = result.getErr()) {
- std::cerr << err->msg;
+ std::cerr << err->msg << '\n';
exit(1);
}