(token)
| 19050 | } |
| 19051 | ts.isLogicalOrCoalescingAssignmentExpression = isLogicalOrCoalescingAssignmentExpression; |
| 19052 | function isAssignmentOperator(token) { |
| 19053 | return token >= 63 /* SyntaxKind.FirstAssignment */ && token <= 78 /* SyntaxKind.LastAssignment */; |
| 19054 | } |
| 19055 | ts.isAssignmentOperator = isAssignmentOperator; |
| 19056 | /** Get `C` given `N` if `N` is in the position `class C extends N` where `N` is an ExpressionWithTypeArguments. */ |
| 19057 | function tryGetClassExtendingExpressionWithTypeArguments(node) { |
no outgoing calls
no test coverage detected