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

Function getIdentifierChain

test/fixtures/snapshot/typescript.js:62748–62755  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

62746 return links.resolvedType;
62747 }
62748 function getIdentifierChain(node) {
62749 if (ts.isIdentifier(node)) {
62750 return [node];
62751 }
62752 else {
62753 return ts.append(getIdentifierChain(node.left), node.right);
62754 }
62755 }
62756 function getTypeFromImportTypeNode(node) {
62757 var links = getNodeLinks(node);
62758 if (!links.resolvedType) {

Callers 1

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected