| 102 | return loadSectionContentVec( |
| 103 | Sec, [this](uint32_t &FuncIdx) -> Expect<void> { |
| 104 | EXPECTED_TRY(uint32_t Idx, FMgr.readU32().map_error([this](auto E) { |
| 105 | return logLoadError(E, FMgr.getLastOffset(), |
| 106 | ASTNodeAttr::Sec_Function); |
| 107 | })); |
| 108 | FuncIdx = Idx; |
| 109 | return {}; |
| 110 | }); |
no test coverage detected