| 11 | namespace callstack::polygen { |
| 12 | |
| 13 | LoaderError::LoaderError(const std::string& what): std::runtime_error(what) {} |
| 14 | |
| 15 | std::shared_ptr<Module> Loader::loadModule(std::span<uint8_t> moduleData) const { |
| 16 | if (ModuleMetadataView::isMetadata(moduleData)) { |
nothing calls this directly
no outgoing calls
no test coverage detected