| 150703 | } |
| 150704 | } |
| 150705 | function arrayElementCouldBeVariableDeclaration(expression, checker) { |
| 150706 | var identifier = ts.isIdentifier(expression) ? expression : |
| 150707 | ts.isAssignmentExpression(expression, /*excludeCompoundAssignment*/ true) && ts.isIdentifier(expression.left) ? expression.left : |
| 150708 | undefined; |
| 150709 | return !!identifier && !checker.getSymbolAtLocation(identifier); |
| 150710 | } |
| 150711 | function isPossiblyPartOfCommaSeperatedInitializer(node) { |
| 150712 | switch (node.kind) { |
| 150713 | case 79 /* SyntaxKind.Identifier */: |