(n node.Node)
| 1388 | } |
| 1389 | |
| 1390 | func (p *Printer) printExprClassConstFetch(n node.Node) { |
| 1391 | nn := n.(*expr.ClassConstFetch) |
| 1392 | p.printFreeFloating(nn, freefloating.Start) |
| 1393 | |
| 1394 | p.Print(nn.Class) |
| 1395 | p.printFreeFloating(nn, freefloating.Name) |
| 1396 | io.WriteString(p.w, "::") |
| 1397 | p.Print(nn.ConstantName) |
| 1398 | |
| 1399 | p.printFreeFloating(nn, freefloating.End) |
| 1400 | } |
| 1401 | |
| 1402 | func (p *Printer) printExprClone(n node.Node) { |
| 1403 | nn := n.(*expr.Clone) |
no test coverage detected