Function
mkClass
(name: string, filePath: string, startLine: number, endLine: number)
Source from the content-addressed store, hash-verified
| 530 | |
| 531 | describe('nestjsResolver.postExtract — RouterModule', () => { |
| 532 | function mkClass(name: string, filePath: string, startLine: number, endLine: number): Node { |
| 533 | return { |
| 534 | id: `class:${filePath}:${startLine}:${name}`, |
| 535 | kind: 'class', |
| 536 | name, |
| 537 | qualifiedName: `${filePath}::${name}`, |
| 538 | filePath, |
| 539 | language: 'typescript', |
| 540 | startLine, |
| 541 | endLine, |
| 542 | startColumn: 0, |
| 543 | endColumn: 0, |
| 544 | updatedAt: 0, |
| 545 | }; |
| 546 | } |
| 547 | |
| 548 | function mkRoute( |
| 549 | filePath: string, |
Tested by
no test coverage detected