diff options
Diffstat (limited to 'src/tools/spectest-interp.cc')
-rw-r--r-- | src/tools/spectest-interp.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/spectest-interp.cc b/src/tools/spectest-interp.cc index 393e5207..1b40c74b 100644 --- a/src/tools/spectest-interp.cc +++ b/src/tools/spectest-interp.cc @@ -738,6 +738,8 @@ wabt::Result JSONParser::ParseCommand(CommandPtr* out_command) { EXPECT(","); CHECK_RESULT(ParseAction(&command->action)); EXPECT(","); + PARSE_KEY_STRING_VALUE("text", &command->text); + EXPECT(","); CHECK_RESULT(ParseActionResult()); *out_command = std::move(command); } else { |