| 1235 | } |
| 1236 | |
| 1237 | Result BinaryReaderInterp::OnCallRefExpr(Type sig_type) { |
| 1238 | CHECK_RESULT( |
| 1239 | validator_.OnCallRef(GetLocation(), Var(sig_type, GetLocation()))); |
| 1240 | assert(sig_type == Type::RefNull); |
| 1241 | istream_.Emit(Opcode::CallRef); |
| 1242 | return Result::Ok; |
| 1243 | } |
| 1244 | |
| 1245 | Result BinaryReaderInterp::OnReturnCallExpr(Index func_index) { |
| 1246 | CHECK_RESULT( |