(name: string, language: 'swift' | 'objc', filePath: string)
| 47 | } |
| 48 | |
| 49 | function ref(name: string, language: 'swift' | 'objc', filePath: string): UnresolvedRef { |
| 50 | return { |
| 51 | fromNodeId: `caller:${filePath}`, |
| 52 | referenceName: name, |
| 53 | referenceKind: 'calls', |
| 54 | line: 1, |
| 55 | column: 0, |
| 56 | filePath, |
| 57 | language, |
| 58 | }; |
| 59 | } |
| 60 | |
| 61 | describe('swiftObjcBridgeResolver integration', () => { |
| 62 | describe('detect()', () => { |
no outgoing calls
no test coverage detected