We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bddf55 commit ec39d41Copy full SHA for ec39d41
src/compiler/types.ts
@@ -4214,7 +4214,7 @@ namespace ts {
4214
Independent = 1 << 2, // Unwitnessed type parameter
4215
VarianceMask = Invariant | Covariant | Contravariant | Independent, // Mask containing all measured variances without the unmeasurable flag
4216
Unmeasurable = 1 << 3, // Variance result is unusable - relationship relies on structural comparisons which are not reflected in generic relationships
4217
- Unreliable = 1 << 4, // Variance result is unreliable - relationship relies on structural comparisons which are not reflected in generic relationships
+ Unreliable = 1 << 4, // Variance result is unreliable - checking may produce false negatives, but not false positives
4218
AllowsStructuralFallback = Unmeasurable | Unreliable,
4219
}
4220
0 commit comments