File tree 2 files changed +1
-2
lines changed 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -577,7 +577,6 @@ namespace ts {
577
577
const packageIdToSourceFile = createMap < SourceFile > ( ) ;
578
578
// Maps from a SourceFile's `.path` to the name of the package it was imported with.
579
579
let sourceFileToPackageName = createMap < string > ( ) ;
580
- // See `sourceFileIsRedirectedTo`.
581
580
let redirectTargetsSet = createMap < true > ( ) ;
582
581
583
582
const filesByName = createMap < SourceFile | undefined > ( ) ;
Original file line number Diff line number Diff line change @@ -2527,7 +2527,7 @@ namespace ts {
2527
2527
/**
2528
2528
* If two source files are for the same version of the same package, one will redirect to the other.
2529
2529
* (See `createRedirectSourceFile` in program.ts.)
2530
- * The redirect will have this set. The other will not have anything set, but see Program#sourceFileIsRedirectedTo .
2530
+ * The redirect will have this set. The redirected-to source file will be in `redirectTargetsSet` .
2531
2531
*/
2532
2532
/* @internal */ redirectInfo ?: RedirectInfo | undefined ;
2533
2533
You can’t perform that action at this time.
0 commit comments