(n node.Node)
| 1713 | } |
| 1714 | |
| 1715 | func (p *Printer) printExprPropertyFetch(n node.Node) { |
| 1716 | nn := n.(*expr.PropertyFetch) |
| 1717 | p.printFreeFloating(nn, freefloating.Start) |
| 1718 | |
| 1719 | p.Print(nn.Variable) |
| 1720 | p.printFreeFloating(nn, freefloating.Var) |
| 1721 | io.WriteString(p.w, "->") |
| 1722 | p.Print(nn.Property) |
| 1723 | |
| 1724 | p.printFreeFloating(nn, freefloating.End) |
| 1725 | } |
| 1726 | |
| 1727 | func (p *Printer) printExprReference(n node.Node) { |
| 1728 | nn := n.(*expr.Reference) |
no test coverage detected