(type, mapper)
| 63626 | return type; |
| 63627 | } |
| 63628 | function instantiateType(type, mapper) { |
| 63629 | return type && mapper ? instantiateTypeWithAlias(type, mapper, /*aliasSymbol*/ undefined, /*aliasTypeArguments*/ undefined) : type; |
| 63630 | } |
| 63631 | function instantiateTypeWithAlias(type, mapper, aliasSymbol, aliasTypeArguments) { |
| 63632 | if (!couldContainTypeVariables(type)) { |
| 63633 | return type; |
no test coverage detected