(type)
| 58633 | (type.typeParameter = getDeclaredTypeOfTypeParameter(getSymbolOfNode(type.declaration.typeParameter))); |
| 58634 | } |
| 58635 | function getConstraintTypeFromMappedType(type) { |
| 58636 | return type.constraintType || |
| 58637 | (type.constraintType = getConstraintOfTypeParameter(getTypeParameterFromMappedType(type)) || errorType); |
| 58638 | } |
| 58639 | function getNameTypeFromMappedType(type) { |
| 58640 | return type.declaration.nameType ? |
| 58641 | type.nameType || (type.nameType = instantiateType(getTypeFromTypeNode(type.declaration.nameType), type.mapper)) : |
no test coverage detected
searching dependent graphs…