(fullPath: string)
| 396 | |
| 397 | private async getNodeByPath(parentNode: NodeEntity, pathString: string) { |
| 398 | let node = parentNode; |
| 399 | const pathParts = splitPathSegments(pathString); |
| 400 | for (const part of pathParts) { |
| 401 | if (part === '') { |
| 402 | continue; |
| 403 | } |
| 404 | node = await this.getNodeByName(node, part); |
no test coverage detected