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

Function updateCallSignature

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

Source from the content-addressed store, hash-verified

23459 }
23460 // @api
23461 function updateCallSignature(node, typeParameters, parameters, type) {
23462 return node.typeParameters !== typeParameters
23463 || node.parameters !== parameters
23464 || node.type !== type
23465 ? updateBaseSignatureDeclaration(createCallSignature(typeParameters, parameters, type), node)
23466 : node;
23467 }
23468 // @api
23469 function createConstructSignature(typeParameters, parameters, type) {
23470 var node = createBaseSignatureDeclaration(175 /* SyntaxKind.ConstructSignature */,

Callers

nothing calls this directly

Calls 2

createCallSignatureFunction · 0.85

Tested by

no test coverage detected