(name: string, typeName: string)
| 1656 | } |
| 1657 | |
| 1658 | function newNamespaceNode(name: string, typeName: string): NamespaceNode { |
| 1659 | return { name, typeName, methods: [], children: new Map() }; |
| 1660 | } |
| 1661 | |
| 1662 | /** |
| 1663 | * Build a namespace tree from a list of methods. `groupOf(method)` returns the |
no outgoing calls
no test coverage detected
searching dependent graphs…