(node)
| 94407 | return visitor(node); |
| 94408 | } |
| 94409 | function visitorDestructuringTarget(node) { |
| 94410 | switch (node.kind) { |
| 94411 | case 205 /* SyntaxKind.ObjectLiteralExpression */: |
| 94412 | case 204 /* SyntaxKind.ArrayLiteralExpression */: |
| 94413 | return visitAssignmentPattern(node); |
| 94414 | default: |
| 94415 | return visitor(node); |
| 94416 | } |
| 94417 | } |
| 94418 | /** |
| 94419 | * If we visit a private name, this means it is an undeclared private name. |
| 94420 | * Replace it with an empty identifier to indicate a problem with the code, |
nothing calls this directly
no test coverage detected