(n node.Node)
| 1039 | } |
| 1040 | |
| 1041 | func (p *Printer) printBinaryMod(n node.Node) { |
| 1042 | nn := n.(*binary.Mod) |
| 1043 | p.printFreeFloating(nn, freefloating.Start) |
| 1044 | |
| 1045 | p.Print(nn.Left) |
| 1046 | p.printFreeFloating(nn, freefloating.Expr) |
| 1047 | io.WriteString(p.w, "%") |
| 1048 | p.Print(nn.Right) |
| 1049 | |
| 1050 | p.printFreeFloating(nn, freefloating.End) |
| 1051 | } |
| 1052 | |
| 1053 | func (p *Printer) printBinaryMul(n node.Node) { |
| 1054 | nn := n.(*binary.Mul) |
no test coverage detected