| 102 | } |
| 103 | |
| 104 | ModuleDefinition* Design::getModuleDefinition( |
| 105 | std::string_view moduleName) const { |
| 106 | ModuleNameModuleDefinitionMap::const_iterator itr = |
| 107 | m_moduleDefinitions.find(moduleName); |
| 108 | if (itr != m_moduleDefinitions.end()) { |
| 109 | return (*itr).second; |
| 110 | } |
| 111 | return nullptr; |
| 112 | } |
| 113 | |
| 114 | std::string Design::reportInstanceTree() const { |
| 115 | std::string tree; |
no outgoing calls
no test coverage detected