| 1097 | } |
| 1098 | |
| 1099 | Result BinaryReaderInterp::OnLoopExpr(Type sig_type) { |
| 1100 | CHECK_RESULT(validator_.OnLoop(GetLocation(), sig_type)); |
| 1101 | PushLabel(LabelKind::Block, istream_.end()); |
| 1102 | return Result::Ok; |
| 1103 | } |
| 1104 | |
| 1105 | Result BinaryReaderInterp::OnIfExpr(Type sig_type) { |
| 1106 | CHECK_RESULT(validator_.OnIf(GetLocation(), sig_type)); |