| 691 | } |
| 692 | |
| 693 | Result BinaryReaderIR::OnFunction(Index index, Index sig_index) { |
| 694 | auto field = std::make_unique<FuncModuleField>(GetLocation()); |
| 695 | Func& func = field->func; |
| 696 | SetFuncDeclaration(&func.decl, Var(sig_index, GetLocation())); |
| 697 | module_->AppendField(std::move(field)); |
| 698 | return Result::Ok; |
| 699 | } |
| 700 | |
| 701 | Result BinaryReaderIR::OnTableCount(Index count) { |
| 702 | WABT_TRY |
no test coverage detected