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

Function isLogicalOrCoalescingAssignmentOperator

test/fixtures/snapshot/typescript.js:19042–19046  ·  view source on GitHub ↗
(token)

Source from the content-addressed store, hash-verified

19040 }
19041 ts.isLogicalOperator = isLogicalOperator;
19042 function isLogicalOrCoalescingAssignmentOperator(token) {
19043 return token === 75 /* SyntaxKind.BarBarEqualsToken */
19044 || token === 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */
19045 || token === 77 /* SyntaxKind.QuestionQuestionEqualsToken */;
19046 }
19047 ts.isLogicalOrCoalescingAssignmentOperator = isLogicalOrCoalescingAssignmentOperator;
19048 function isLogicalOrCoalescingAssignmentExpression(expr) {
19049 return isLogicalOrCoalescingAssignmentOperator(expr.operatorToken.kind);

Calls

no outgoing calls

Tested by

no test coverage detected