(n node.Node)
| 739 | } |
| 740 | |
| 741 | func (p *Printer) printAssignDiv(n node.Node) { |
| 742 | nn := n.(*assign.Div) |
| 743 | p.printFreeFloating(nn, freefloating.Start) |
| 744 | p.Print(nn.Variable) |
| 745 | p.printFreeFloating(nn, freefloating.Var) |
| 746 | io.WriteString(p.w, "/=") |
| 747 | p.Print(nn.Expression) |
| 748 | |
| 749 | p.printFreeFloating(nn, freefloating.End) |
| 750 | } |
| 751 | |
| 752 | func (p *Printer) printAssignMinus(n node.Node) { |
| 753 | nn := n.(*assign.Minus) |
no test coverage detected