(node)
| 17106 | // an assignment target. Examples include 'a = xxx', '{ p: a } = xxx', '[{ a }] = xxx'. |
| 17107 | // (Note that `p` is not a target in the above examples, only `a`.) |
| 17108 | function isAssignmentTarget(node) { |
| 17109 | return getAssignmentTargetKind(node) !== 0 /* AssignmentKind.None */; |
| 17110 | } |
| 17111 | ts.isAssignmentTarget = isAssignmentTarget; |
| 17112 | /** |
| 17113 | * Indicates whether a node could contain a `var` VariableDeclarationList that contributes to |
nothing calls this directly
no test coverage detected