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

Function isBinaryOperator

test/fixtures/snapshot/typescript.js:30445–30448  ·  view source on GitHub ↗
(kind)

Source from the content-addressed store, hash-verified

30443 || ts.isAssignmentOperator(kind);
30444 }
30445 function isBinaryOperator(kind) {
30446 return isAssignmentOperatorOrHigher(kind)
30447 || kind === 27 /* SyntaxKind.CommaToken */;
30448 }
30449 function isBinaryOperatorToken(node) {
30450 return isBinaryOperator(node.kind);
30451 }

Callers 2

isBinaryOperatorTokenFunction · 0.85
isStartOfExpressionFunction · 0.85

Calls 3

inDisallowInContextFunction · 0.85
tokenFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…