(node *ast.Node)
| 1815 | } |
| 1816 | |
| 1817 | func isLogicalAssignmentExpression(node *ast.Node) bool { |
| 1818 | return ast.IsLogicalOrCoalescingAssignmentExpression(ast.SkipParentheses(node)) |
| 1819 | } |
| 1820 | |
| 1821 | func (b *Binder) bindAssignmentTargetFlow(node *ast.Node) { |
| 1822 | switch node.Kind { |
no test coverage detected