(type, context, constraint)
| 53346 | return ts.factory.createTypeParameterDeclaration(modifiers, name, constraintNode, defaultParameterNode); |
| 53347 | } |
| 53348 | function typeParameterToDeclaration(type, context, constraint) { |
| 53349 | if (constraint === void 0) { constraint = getConstraintOfTypeParameter(type); } |
| 53350 | var constraintNode = constraint && typeToTypeNodeHelper(constraint, context); |
| 53351 | return typeParameterToDeclarationWithConstraint(type, context, constraintNode); |
| 53352 | } |
| 53353 | function symbolToParameterDeclaration(parameterSymbol, context, preserveModifierFlags, privateSymbolVisitor, bundledImports) { |
| 53354 | var parameterDeclaration = ts.getDeclarationOfKind(parameterSymbol, 164 /* SyntaxKind.Parameter */); |
| 53355 | if (!parameterDeclaration && !ts.isTransientSymbol(parameterSymbol)) { |
no test coverage detected
searching dependent graphs…