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

Function isPropertyAccessEntityNameExpression

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

Source from the content-addressed store, hash-verified

19123 }
19124 ts.isDottedName = isDottedName;
19125 function isPropertyAccessEntityNameExpression(node) {
19126 return ts.isPropertyAccessExpression(node) && ts.isIdentifier(node.name) && isEntityNameExpression(node.expression);
19127 }
19128 ts.isPropertyAccessEntityNameExpression = isPropertyAccessEntityNameExpression;
19129 function tryGetPropertyAccessOrIdentifierToString(expr) {
19130 if (ts.isPropertyAccessExpression(expr)) {

Callers 1

isEntityNameExpressionFunction · 0.85

Calls 1

isEntityNameExpressionFunction · 0.85

Tested by

no test coverage detected