| 451 | } |
| 452 | |
| 453 | Result BinaryReaderInterp::GetReturnDropKeepCount(Index* out_drop_count, |
| 454 | Index* out_keep_count) { |
| 455 | CHECK_RESULT(GetBrDropKeepCount(label_stack_.size() - 1, out_drop_count, |
| 456 | out_keep_count)); |
| 457 | *out_drop_count += validator_.GetLocalCount(); |
| 458 | return Result::Ok; |
| 459 | } |
| 460 | |
| 461 | Result BinaryReaderInterp::GetReturnCallDropKeepCount(const FuncType& func_type, |
| 462 | Index keep_extra, |
nothing calls this directly
no test coverage detected