(n node.Node)
| 2833 | } |
| 2834 | |
| 2835 | func (p *Printer) printStmtLabel(n node.Node) { |
| 2836 | nn := n.(*stmt.Label) |
| 2837 | p.printFreeFloating(nn, freefloating.Start) |
| 2838 | |
| 2839 | p.Print(nn.LabelName) |
| 2840 | p.printFreeFloating(nn, freefloating.Label) |
| 2841 | |
| 2842 | io.WriteString(p.w, ":") |
| 2843 | |
| 2844 | p.printFreeFloating(nn, freefloating.End) |
| 2845 | } |
| 2846 | |
| 2847 | func (p *Printer) printStmtNamespace(n node.Node) { |
| 2848 | nn := n.(*stmt.Namespace) |
no test coverage detected