(type)
| 66966 | return false; |
| 66967 | } |
| 66968 | function getVariances(type) { |
| 66969 | // Arrays and tuples are known to be covariant, no need to spend time computing this. |
| 66970 | return type === globalArrayType || type === globalReadonlyArrayType || type.objectFlags & 8 /* ObjectFlags.Tuple */ ? |
| 66971 | arrayVariances : |
| 66972 | getVariancesWorker(type.symbol, type.typeParameters); |
| 66973 | } |
| 66974 | function getAliasVariances(symbol) { |
| 66975 | return getVariancesWorker(symbol, getSymbolLinks(symbol).typeParameters); |
| 66976 | } |
no test coverage detected