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

Function isShiftOperatorOrHigher

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

Source from the content-addressed store, hash-verified

30394 || kind === 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */;
30395 }
30396 function isShiftOperatorOrHigher(kind) {
30397 return isShiftOperator(kind)
30398 || isAdditiveOperatorOrHigher(kind);
30399 }
30400 function isRelationalOperator(kind) {
30401 return kind === 29 /* SyntaxKind.LessThanToken */
30402 || kind === 32 /* SyntaxKind.LessThanEqualsToken */

Callers 1

Calls 2

isShiftOperatorFunction · 0.85

Tested by

no test coverage detected