(n node.Node)
| 1856 | } |
| 1857 | |
| 1858 | func (p *Printer) printExprUnaryPlus(n node.Node) { |
| 1859 | nn := n.(*expr.UnaryPlus) |
| 1860 | p.printFreeFloating(nn, freefloating.Start) |
| 1861 | |
| 1862 | io.WriteString(p.w, "+") |
| 1863 | p.Print(nn.Expr) |
| 1864 | |
| 1865 | p.printFreeFloating(nn, freefloating.End) |
| 1866 | } |
| 1867 | |
| 1868 | func (p *Printer) printExprVariable(n node.Node) { |
| 1869 | nn := n.(*expr.Variable) |
no test coverage detected