(n node.Node)
| 1558 | } |
| 1559 | |
| 1560 | func (p *Printer) printExprIncludeOnce(n node.Node) { |
| 1561 | nn := n.(*expr.IncludeOnce) |
| 1562 | p.printFreeFloating(nn, freefloating.Start) |
| 1563 | io.WriteString(p.w, "include_once") |
| 1564 | if nn.Expr.GetFreeFloating().IsEmpty() { |
| 1565 | io.WriteString(p.w, " ") |
| 1566 | } |
| 1567 | p.Print(nn.Expr) |
| 1568 | p.printFreeFloating(nn, freefloating.End) |
| 1569 | } |
| 1570 | |
| 1571 | func (p *Printer) printExprInstanceOf(n node.Node) { |
| 1572 | nn := n.(*expr.InstanceOf) |
no test coverage detected