(n node.Node)
| 761 | } |
| 762 | |
| 763 | func (p *Printer) printAssignMod(n node.Node) { |
| 764 | nn := n.(*assign.Mod) |
| 765 | p.printFreeFloating(nn, freefloating.Start) |
| 766 | p.Print(nn.Variable) |
| 767 | p.printFreeFloating(nn, freefloating.Var) |
| 768 | io.WriteString(p.w, "%=") |
| 769 | p.Print(nn.Expression) |
| 770 | |
| 771 | p.printFreeFloating(nn, freefloating.End) |
| 772 | } |
| 773 | |
| 774 | func (p *Printer) printAssignMul(n node.Node) { |
| 775 | nn := n.(*assign.Mul) |
no test coverage detected