summaryrefslogtreecommitdiff
path: root/src/wast-parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wast-parser.cc')
-rw-r--r--src/wast-parser.cc35
1 files changed, 13 insertions, 22 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc
index 5d030668..ad4e2e65 100644
--- a/src/wast-parser.cc
+++ b/src/wast-parser.cc
@@ -3090,36 +3090,27 @@ Result WastParser::ParseExpr(ExprList* exprs) {
CHECK_RESULT(ParseLabelOpt(&expr->true_.label));
CHECK_RESULT(ParseBlockDeclaration(&expr->true_.decl));
- if (PeekMatchExpr()) {
+ while (PeekMatchExpr()) {
ExprList cond;
CHECK_RESULT(ParseExpr(&cond));
exprs->splice(exprs->end(), cond);
}
- if (MatchLpar(TokenType::Then)) {
- CHECK_RESULT(ParseTerminatingInstrList(&expr->true_.exprs));
- expr->true_.end_loc = GetLocation();
- EXPECT(Rpar);
-
- if (MatchLpar(TokenType::Else)) {
- CHECK_RESULT(ParseTerminatingInstrList(&expr->false_));
- EXPECT(Rpar);
- } else if (PeekMatchExpr()) {
- CHECK_RESULT(ParseExpr(&expr->false_));
- }
- expr->false_end_loc = GetLocation();
- } else if (PeekMatchExpr()) {
- CHECK_RESULT(ParseExpr(&expr->true_.exprs));
- expr->true_.end_loc = GetLocation();
- if (PeekMatchExpr()) {
- CHECK_RESULT(ParseExpr(&expr->false_));
- expr->false_end_loc = GetLocation();
- }
- } else {
- ConsumeIfLpar();
+ EXPECT(Lpar);
+ if (!Match(TokenType::Then)) {
return ErrorExpected({"then block"}, "(then ...)");
}
+ CHECK_RESULT(ParseTerminatingInstrList(&expr->true_.exprs));
+ expr->true_.end_loc = GetLocation();
+ EXPECT(Rpar);
+
+ if (MatchLpar(TokenType::Else)) {
+ CHECK_RESULT(ParseTerminatingInstrList(&expr->false_));
+ EXPECT(Rpar);
+ }
+ expr->false_end_loc = GetLocation();
+
exprs->push_back(std::move(expr));
break;
}