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

Function createQualifiedName

test/fixtures/snapshot/typescript.js:23153–23161  ·  view source on GitHub ↗
(left, right)

Source from the content-addressed store, hash-verified

23151 //
23152 // @api
23153 function createQualifiedName(left, right) {
23154 var node = createBaseNode(161 /* SyntaxKind.QualifiedName */);
23155 node.left = left;
23156 node.right = asName(right);
23157 node.transformFlags |=
23158 propagateChildFlags(node.left) |
23159 propagateIdentifierNameFlags(node.right);
23160 return node;
23161 }
23162 // @api
23163 function updateQualifiedName(node, left, right) {
23164 return node.left !== left

Callers 2

updateQualifiedNameFunction · 0.85
parseJSDocEntityNameFunction · 0.85

Calls 5

createBaseNodeFunction · 0.85
asNameFunction · 0.85
propagateChildFlagsFunction · 0.85
finishNodeFunction · 0.85

Tested by

no test coverage detected