| 1169 | } |
| 1170 | |
| 1171 | Result SharedValidator::OnRefIsNull(const Location& loc) { |
| 1172 | Result result = CheckInstr(Opcode::RefIsNull, loc); |
| 1173 | result |= typechecker_.OnRefIsNullExpr(); |
| 1174 | return result; |
| 1175 | } |
| 1176 | |
| 1177 | Result SharedValidator::OnRefNull(const Location& loc, Var func_type_var) { |
| 1178 | Result result = CheckInstr(Opcode::RefNull, loc); |
no test coverage detected