(n node.Node)
| 1658 | } |
| 1659 | |
| 1660 | func (p *Printer) printExprPostDec(n node.Node) { |
| 1661 | nn := n.(*expr.PostDec) |
| 1662 | p.printFreeFloating(nn, freefloating.Start) |
| 1663 | |
| 1664 | p.Print(nn.Variable) |
| 1665 | p.printFreeFloating(nn, freefloating.Var) |
| 1666 | io.WriteString(p.w, "--") |
| 1667 | |
| 1668 | p.printFreeFloating(nn, freefloating.End) |
| 1669 | } |
| 1670 | |
| 1671 | func (p *Printer) printExprPostInc(n node.Node) { |
| 1672 | nn := n.(*expr.PostInc) |
no test coverage detected