| 402 | } |
| 403 | |
| 404 | interface BlockDecl { |
| 405 | kind: 'class' | 'module' | 'variable' | 'namespace'; |
| 406 | name: string; |
| 407 | qualifiedName: string; |
| 408 | signature: string; |
| 409 | } |
| 410 | |
| 411 | function describeBlock(type: string, labels: string[]): BlockDecl | null { |
| 412 | const [first, second] = labels; |
nothing calls this directly
no outgoing calls
no test coverage detected