(kind)
| 30425 | || kind === 52 /* SyntaxKind.CaretToken */; |
| 30426 | } |
| 30427 | function isBitwiseOperatorOrHigher(kind) { |
| 30428 | return isBitwiseOperator(kind) |
| 30429 | || isEqualityOperatorOrHigher(kind); |
| 30430 | } |
| 30431 | // NOTE: The version in utilities includes ExclamationToken, which is not a binary operator. |
| 30432 | function isLogicalOperator(kind) { |
| 30433 | return kind === 55 /* SyntaxKind.AmpersandAmpersandToken */ |
no test coverage detected