(n node.Node)
| 3044 | } |
| 3045 | |
| 3046 | func (p *Printer) printStmtTraitMethodRef(n node.Node) { |
| 3047 | nn := n.(*stmt.TraitMethodRef) |
| 3048 | p.printFreeFloating(nn, freefloating.Start) |
| 3049 | |
| 3050 | if nn.Trait != nil { |
| 3051 | p.Print(nn.Trait) |
| 3052 | p.printFreeFloating(nn, freefloating.Name) |
| 3053 | io.WriteString(p.w, "::") |
| 3054 | } |
| 3055 | |
| 3056 | p.Print(nn.Method) |
| 3057 | |
| 3058 | p.printFreeFloating(nn, freefloating.End) |
| 3059 | } |
| 3060 | |
| 3061 | func (p *Printer) printStmtTraitUseAlias(n node.Node) { |
| 3062 | nn := n.(*stmt.TraitUseAlias) |
no test coverage detected