(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason)
| 118468 | } |
| 118469 | } |
| 118470 | function processTypeReferenceDirective(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason) { |
| 118471 | ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "processTypeReferenceDirective", { directive: typeReferenceDirective, hasResolved: !!resolveModuleNamesReusingOldState, refKind: reason.kind, refPath: isReferencedFile(reason) ? reason.file : undefined }); |
| 118472 | processTypeReferenceDirectiveWorker(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason); |
| 118473 | ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); |
| 118474 | } |
| 118475 | function processTypeReferenceDirectiveWorker(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason) { |
| 118476 | // If we already found this library as a primary reference - nothing to do |
| 118477 | var previousResolution = resolvedTypeReferenceDirectives.get(typeReferenceDirective, mode); |
no test coverage detected
searching dependent graphs…