(node, typeParameters, parameters, type)
| 23564 | } |
| 23565 | // @api |
| 23566 | function updateFunctionTypeNode(node, typeParameters, parameters, type) { |
| 23567 | return node.typeParameters !== typeParameters |
| 23568 | || node.parameters !== parameters |
| 23569 | || node.type !== type |
| 23570 | ? updateBaseSignatureDeclaration(createFunctionTypeNode(typeParameters, parameters, type), node) |
| 23571 | : node; |
| 23572 | } |
| 23573 | // @api |
| 23574 | function createConstructorTypeNode() { |
| 23575 | var args = []; |
nothing calls this directly
no test coverage detected
searching dependent graphs…