We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b470976 commit e04f677Copy full SHA for e04f677
src/compiler/types.ts
@@ -4220,7 +4220,7 @@ namespace ts {
4220
Independent = 1 << 2, // Unwitnessed type parameter
4221
VarianceMask = Invariant | Covariant | Contravariant | Independent, // Mask containing all measured variances without the unmeasurable flag
4222
Unmeasurable = 1 << 3, // Variance result is unusable - relationship relies on structural comparisons which are not reflected in generic relationships
4223
- 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
4224
AllowsStructuralFallback = Unmeasurable | Unreliable,
4225
}
4226
0 commit comments