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

Function isLogicalAssignmentExpression

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

Source from the content-addressed store, hash-verified

45514 }
45515 }
45516 function isLogicalAssignmentExpression(node) {
45517 node = ts.skipParentheses(node);
45518 return ts.isBinaryExpression(node) && ts.isLogicalOrCoalescingAssignmentOperator(node.operatorToken.kind);
45519 }
45520 function isTopLevelLogicalExpression(node) {
45521 while (ts.isParenthesizedExpression(node.parent) ||
45522 ts.isPrefixUnaryExpression(node.parent) && node.parent.operator === 53 /* SyntaxKind.ExclamationToken */) {

Callers 1

bindConditionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected