MCPcopy Index your code
hub / github.com/nodejs/node / updateFunctionTypeNode

Function updateFunctionTypeNode

test/fixtures/snapshot/typescript.js:23566–23572  ·  view source on GitHub ↗
(node, typeParameters, parameters, type)

Source from the content-addressed store, hash-verified

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 = [];

Callers

nothing calls this directly

Calls 2

createFunctionTypeNodeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…