(node)
| 45901 | } |
| 45902 | } |
| 45903 | function bindPostfixUnaryExpressionFlow(node) { |
| 45904 | bindEachChild(node); |
| 45905 | if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { |
| 45906 | bindAssignmentTargetFlow(node.operand); |
| 45907 | } |
| 45908 | } |
| 45909 | function bindDestructuringAssignmentFlow(node) { |
| 45910 | if (inAssignmentPattern) { |
| 45911 | inAssignmentPattern = false; |
no test coverage detected