| 255 | } |
| 256 | |
| 257 | ModuleInstance* Design::findInstance(std::string_view path, |
| 258 | ModuleInstance* scope) const { |
| 259 | std::vector<std::string> vpath; |
| 260 | StringUtils::tokenize(path, ".", vpath); |
| 261 | return findInstance(vpath, scope); |
| 262 | } |
| 263 | |
| 264 | ModuleInstance* Design::findInstance(const std::vector<std::string>& path, |
| 265 | ModuleInstance* scope) const { |
no test coverage detected