(token)
| 19040 | } |
| 19041 | ts.isLogicalOperator = isLogicalOperator; |
| 19042 | function isLogicalOrCoalescingAssignmentOperator(token) { |
| 19043 | return token === 75 /* SyntaxKind.BarBarEqualsToken */ |
| 19044 | || token === 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */ |
| 19045 | || token === 77 /* SyntaxKind.QuestionQuestionEqualsToken */; |
| 19046 | } |
| 19047 | ts.isLogicalOrCoalescingAssignmentOperator = isLogicalOrCoalescingAssignmentOperator; |
| 19048 | function isLogicalOrCoalescingAssignmentExpression(expr) { |
| 19049 | return isLogicalOrCoalescingAssignmentOperator(expr.operatorToken.kind); |
no outgoing calls
no test coverage detected