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

Function getLeftmostAccessExpression

test/fixtures/snapshot/typescript.js:19806–19811  ·  view source on GitHub ↗
(expr)

Source from the content-addressed store, hash-verified

19804 }
19805 ts.isNamedImportsOrExports = isNamedImportsOrExports;
19806 function getLeftmostAccessExpression(expr) {
19807 while (isAccessExpression(expr)) {
19808 expr = expr.expression;
19809 }
19810 return expr;
19811 }
19812 ts.getLeftmostAccessExpression = getLeftmostAccessExpression;
19813 function forEachNameInAccessChainWalkingLeft(name, action) {
19814 if (isAccessExpression(name.parent) && isRightSideOfAccessExpression(name)) {

Calls 1

isAccessExpressionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…