| 1314 | } |
| 1315 | |
| 1316 | Result BinaryReaderInterp::OnConvertExpr(Opcode opcode) { |
| 1317 | CHECK_RESULT(validator_.OnConvert(GetLocation(), opcode)); |
| 1318 | istream_.Emit(opcode); |
| 1319 | return Result::Ok; |
| 1320 | } |
| 1321 | |
| 1322 | Result BinaryReaderInterp::OnDropExpr() { |
| 1323 | CHECK_RESULT(validator_.OnDrop(GetLocation())); |