(kind)
| 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 */ |
no test coverage detected