(p)
| 62507 | return type; |
| 62508 | } |
| 62509 | function maybeCloneTypeParameter(p) { |
| 62510 | var constraint = getConstraintOfTypeParameter(p); |
| 62511 | return constraint && (isGenericObjectType(constraint) || isGenericIndexType(constraint)) ? cloneTypeParameter(p) : p; |
| 62512 | } |
| 62513 | function isTypicalNondistributiveConditional(root) { |
| 62514 | return !root.isDistributive && isSingletonTupleType(root.node.checkType) && isSingletonTupleType(root.node.extendsType); |
| 62515 | } |
nothing calls this directly
no test coverage detected