(n node.Node)
| 670 | } |
| 671 | |
| 672 | func (p *Printer) printAssignReference(n node.Node) { |
| 673 | nn := n.(*assign.Reference) |
| 674 | p.printFreeFloating(nn, freefloating.Start) |
| 675 | p.Print(nn.Variable) |
| 676 | p.printFreeFloating(nn, freefloating.Var) |
| 677 | io.WriteString(p.w, "=") |
| 678 | p.printFreeFloating(nn, freefloating.Equal) |
| 679 | io.WriteString(p.w, "&") |
| 680 | p.Print(nn.Expression) |
| 681 | |
| 682 | p.printFreeFloating(nn, freefloating.End) |
| 683 | } |
| 684 | |
| 685 | func (p *Printer) printAssignBitwiseAnd(n node.Node) { |
| 686 | nn := n.(*assign.BitwiseAnd) |
no test coverage detected