| 1492 | } |
| 1493 | |
| 1494 | Result BinaryReaderInterp::OnRefIsNullExpr() { |
| 1495 | CHECK_RESULT(validator_.OnRefIsNull(GetLocation())); |
| 1496 | istream_.Emit(Opcode::RefIsNull); |
| 1497 | return Result::Ok; |
| 1498 | } |
| 1499 | |
| 1500 | Result BinaryReaderInterp::OnNopExpr() { |
| 1501 | CHECK_RESULT(validator_.OnNop(GetLocation())); |
nothing calls this directly
no test coverage detected