(token Kind)
| 230 | } |
| 231 | |
| 232 | func IsLogicalOrCoalescingBinaryOperator(token Kind) bool { |
| 233 | return IsLogicalBinaryOperator(token) || token == KindQuestionQuestionToken |
| 234 | } |
| 235 | |
| 236 | func IsLogicalOrCoalescingBinaryExpression(expr *Node) bool { |
| 237 | return IsBinaryExpression(expr) && IsLogicalOrCoalescingBinaryOperator(expr.AsBinaryExpression().OperatorToken.Kind) |
no test coverage detected