| 181 | } |
| 182 | |
| 183 | ModuleInstance* ModuleInstance::getChildByName(std::string_view name) { |
| 184 | for (auto child : m_allSubInstances) { |
| 185 | if (child->getInstanceName() == name) return child; |
| 186 | } |
| 187 | return nullptr; |
| 188 | } |
| 189 | |
| 190 | std::string ModuleInstance::decompile(char* valueName) { |
| 191 | ExprBuilder exprBuilder; |
nothing calls this directly
no test coverage detected