| 553 | } |
| 554 | |
| 555 | Result Validator::OnRefNullExpr(RefNullExpr* expr) { |
| 556 | result_ |= validator_.OnRefNull(expr->loc, expr->type); |
| 557 | return Result::Ok; |
| 558 | } |
| 559 | |
| 560 | Result Validator::OnRefIsNullExpr(RefIsNullExpr* expr) { |
| 561 | result_ |= validator_.OnRefIsNull(expr->loc); |
no test coverage detected