| 212 | } |
| 213 | |
| 214 | ModuleInstance* ModuleInstanceFactory::newModuleInstance( |
| 215 | DesignComponent* moduleDefinition, const FileContent* fileContent, |
| 216 | NodeId nodeId, ModuleInstance* parent, std::string_view instName, |
| 217 | std::string_view modName) { |
| 218 | return new ModuleInstance(moduleDefinition, fileContent, nodeId, parent, |
| 219 | instName, modName); |
| 220 | } |
| 221 | |
| 222 | VObjectType ModuleInstance::getType() const { |
| 223 | return m_fileContent->Type(m_nodeId); |
no outgoing calls
no test coverage detected