| 397 | } |
| 398 | |
| 399 | bool NativeModule::getExportSymbols(SymbolList *exportSymbols) const |
| 400 | { |
| 401 | LOG_ASSERT(exportSymbols != nullptr, "%s", "null pointer error"); |
| 402 | |
| 403 | for (auto index : m_exportSymbols) |
| 404 | { |
| 405 | exportSymbols->emplace_back(m_symbols[index]); |
| 406 | } |
| 407 | |
| 408 | return true; |
| 409 | } |
| 410 | |
| 411 | bool NativeModule::getUnresolvedSymbols(SymbolList *symbolList) const |
| 412 | { |
no test coverage detected