(node)
| 19080 | } |
| 19081 | ts.isLeftHandSideOfAssignment = isLeftHandSideOfAssignment; |
| 19082 | function isDestructuringAssignment(node) { |
| 19083 | if (isAssignmentExpression(node, /*excludeCompoundAssignment*/ true)) { |
| 19084 | var kind = node.left.kind; |
| 19085 | return kind === 205 /* SyntaxKind.ObjectLiteralExpression */ |
| 19086 | || kind === 204 /* SyntaxKind.ArrayLiteralExpression */; |
| 19087 | } |
| 19088 | return false; |
| 19089 | } |
| 19090 | ts.isDestructuringAssignment = isDestructuringAssignment; |
| 19091 | function isExpressionWithTypeArgumentsInClassExtendsClause(node) { |
| 19092 | return tryGetClassExtendingExpressionWithTypeArguments(node) !== undefined; |
nothing calls this directly
no test coverage detected