(state, modifiers)
| 63536 | return instantiateType(getConstraintTypeFromMappedType(type), mapper) === wildcardType ? wildcardType : instantiateAnonymousType(type, mapper, aliasSymbol, aliasTypeArguments); |
| 63537 | } |
| 63538 | function getModifiedReadonlyState(state, modifiers) { |
| 63539 | return modifiers & 1 /* MappedTypeModifiers.IncludeReadonly */ ? true : modifiers & 2 /* MappedTypeModifiers.ExcludeReadonly */ ? false : state; |
| 63540 | } |
| 63541 | function instantiateMappedGenericTupleType(tupleType, mappedType, typeVariable, mapper) { |
| 63542 | // When a tuple type is generic (i.e. when it contains variadic elements), we want to eagerly map the |
| 63543 | // non-generic elements and defer mapping the generic elements. In order to facilitate this, we transform |
no outgoing calls
no test coverage detected
searching dependent graphs…