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

Function updateExportSpecifier

test/fixtures/snapshot/typescript.js:25551–25557  ·  view source on GitHub ↗
(node, isTypeOnly, propertyName, name)

Source from the content-addressed store, hash-verified

25549 }
25550 // @api
25551 function updateExportSpecifier(node, isTypeOnly, propertyName, name) {
25552 return node.isTypeOnly !== isTypeOnly
25553 || node.propertyName !== propertyName
25554 || node.name !== name
25555 ? update(createExportSpecifier(isTypeOnly, propertyName, name), node)
25556 : node;
25557 }
25558 // @api
25559 function createMissingDeclaration() {
25560 var node = createBaseDeclaration(276 /* SyntaxKind.MissingDeclaration */,

Callers

nothing calls this directly

Calls 2

createExportSpecifierFunction · 0.85
updateFunction · 0.70

Tested by

no test coverage detected