(ref: ImportReference)
| 73 | }); |
| 74 | |
| 75 | function addImport(ref: ImportReference) { |
| 76 | const key = `${ref.type}:${ref.method}:${ref.name}`; |
| 77 | if (!keys.has(key)) keys.add(key), imports.push(ref); |
| 78 | } |
| 79 | |
| 80 | function findImport(node: ImportNode | ExportNode) { |
| 81 | const source = node.source; |
no outgoing calls
no test coverage detected