(fromNodeId: string, name: string, line: number)
| 41 | } |
| 42 | |
| 43 | function makeRef(fromNodeId: string, name: string, line: number): UnresolvedReference { |
| 44 | return { |
| 45 | fromNodeId, |
| 46 | referenceName: name, |
| 47 | referenceKind: 'calls', |
| 48 | line, |
| 49 | column: 2, |
| 50 | filePath: 'caller.ts', |
| 51 | language: 'typescript', |
| 52 | }; |
| 53 | } |
| 54 | |
| 55 | describe('Batched ref cleanup precision (#1269)', () => { |
| 56 | let dir: string; |
no outgoing calls
no test coverage detected