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

Function getRightMostAssignedExpression

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

Source from the content-addressed store, hash-verified

16542 }
16543 ts.isSameEntityName = isSameEntityName;
16544 function getRightMostAssignedExpression(node) {
16545 while (isAssignmentExpression(node, /*excludeCompoundAssignments*/ true)) {
16546 node = node.right;
16547 }
16548 return node;
16549 }
16550 ts.getRightMostAssignedExpression = getRightMostAssignedExpression;
16551 function isExportsIdentifier(node) {
16552 return ts.isIdentifier(node) && node.escapedText === "exports";

Callers 2

getSourceOfAssignmentFunction · 0.85

Calls 1

isAssignmentExpressionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…