(component: string | undefined, node: string)
| 118 | } |
| 119 | |
| 120 | getNode(component: string | undefined, node: string): Node | undefined { |
| 121 | return this.nodeMap[component ? component : ALL_COMPONENTS][node]; |
| 122 | } |
| 123 | |
| 124 | getModule(component: string, moduleName: string): Module { |
| 125 | const nodes = Object.values(this.nodeMap[component]).filter((node: Node) => { |
no outgoing calls
no test coverage detected