(kind)
| 30389 | || isMultiplicativeOperatorOrHigher(kind); |
| 30390 | } |
| 30391 | function isShiftOperator(kind) { |
| 30392 | return kind === 47 /* SyntaxKind.LessThanLessThanToken */ |
| 30393 | || kind === 48 /* SyntaxKind.GreaterThanGreaterThanToken */ |
| 30394 | || kind === 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */; |
| 30395 | } |
| 30396 | function isShiftOperatorOrHigher(kind) { |
| 30397 | return isShiftOperator(kind) |
| 30398 | || isAdditiveOperatorOrHigher(kind); |
no outgoing calls
no test coverage detected