(n node.Node)
| 1815 | } |
| 1816 | |
| 1817 | func (p *Printer) printExprStaticPropertyFetch(n node.Node) { |
| 1818 | nn := n.(*expr.StaticPropertyFetch) |
| 1819 | p.printFreeFloating(nn, freefloating.Start) |
| 1820 | |
| 1821 | p.Print(nn.Class) |
| 1822 | p.printFreeFloating(nn, freefloating.Name) |
| 1823 | io.WriteString(p.w, "::") |
| 1824 | p.Print(nn.Property) |
| 1825 | |
| 1826 | p.printFreeFloating(nn, freefloating.End) |
| 1827 | } |
| 1828 | |
| 1829 | func (p *Printer) printExprTernary(n node.Node) { |
| 1830 | nn := n.(*expr.Ternary) |
no test coverage detected