| 379 | } |
| 380 | |
| 381 | void FixupMap::Resolve(Istream& istream, Index index) { |
| 382 | auto iter = map.find(index); |
| 383 | if (iter == map.end()) { |
| 384 | return; |
| 385 | } |
| 386 | for (Offset offset : iter->second) { |
| 387 | istream.ResolveFixupU32(offset); |
| 388 | } |
| 389 | map.erase(iter); |
| 390 | } |
| 391 | |
| 392 | BinaryReaderInterp::BinaryReaderInterp(ModuleDesc* module, |
| 393 | std::string_view filename, |
no test coverage detected