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

Function getFullyQualifiedName

test/fixtures/snapshot/typescript.js:50959–50961  ·  view source on GitHub ↗
(symbol, containingLocation)

Source from the content-addressed store, hash-verified

50957 }
50958 }
50959 function getFullyQualifiedName(symbol, containingLocation) {
50960 return symbol.parent ? getFullyQualifiedName(symbol.parent, containingLocation) + "." + symbolToString(symbol) : symbolToString(symbol, containingLocation, /*meaning*/ undefined, 16 /* SymbolFormatFlags.DoNotIncludeSymbolChain */ | 4 /* SymbolFormatFlags.AllowAnyNodeKind */);
50961 }
50962 function getContainingQualifiedNameNode(node) {
50963 while (ts.isQualifiedName(node.parent)) {
50964 node = node.parent;

Callers 5

getExternalModuleMemberFunction · 0.85
resolveEntityNameFunction · 0.85

Calls 1

symbolToStringFunction · 0.85

Tested by

no test coverage detected