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

Function isLeftHandSideOfAssignment

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

Source from the content-addressed store, hash-verified

19076 }
19077 ts.isAssignmentExpression = isAssignmentExpression;
19078 function isLeftHandSideOfAssignment(node) {
19079 return isAssignmentExpression(node.parent) && node.parent.left === node;
19080 }
19081 ts.isLeftHandSideOfAssignment = isLeftHandSideOfAssignment;
19082 function isDestructuringAssignment(node) {
19083 if (isAssignmentExpression(node, /*excludeCompoundAssignment*/ true)) {

Callers

nothing calls this directly

Calls 1

isAssignmentExpressionFunction · 0.85

Tested by

no test coverage detected