* Get the type hierarchy for a class/interface * * Returns both ancestors (types this extends/implements) and * descendants (types that extend/implement this). * * @param nodeId - ID of the class/interface node * @returns Subgraph containing the type hierarchy
(nodeId: string)
| 1592 | * @returns Subgraph containing the type hierarchy |
| 1593 | */ |
| 1594 | getTypeHierarchy(nodeId: string): Subgraph { |
| 1595 | return this.traverser.getTypeHierarchy(nodeId); |
| 1596 | } |
| 1597 | |
| 1598 | /** |
| 1599 | * Find all usages of a symbol |
no outgoing calls
no test coverage detected