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

Function getSymbolForPrivateIdentifierExpression

test/fixtures/snapshot/typescript.js:74565–74574  ·  view source on GitHub ↗
(privId)

Source from the content-addressed store, hash-verified

74563 return anyType;
74564 }
74565 function getSymbolForPrivateIdentifierExpression(privId) {
74566 if (!ts.isExpressionNode(privId)) {
74567 return undefined;
74568 }
74569 var links = getNodeLinks(privId);
74570 if (links.resolvedSymbol === undefined) {
74571 links.resolvedSymbol = lookupSymbolForPrivateIdentifierDeclaration(privId.escapedText, privId);
74572 }
74573 return links.resolvedSymbol;
74574 }
74575 function getPrivateIdentifierPropertyOfType(leftType, lexicallyScopedIdentifier) {
74576 return getPropertyOfType(leftType, lexicallyScopedIdentifier.escapedName);
74577 }

Calls 2

getNodeLinksFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…