(n node.Node)
| 1547 | } |
| 1548 | |
| 1549 | func (p *Printer) printExprInclude(n node.Node) { |
| 1550 | nn := n.(*expr.Include) |
| 1551 | p.printFreeFloating(nn, freefloating.Start) |
| 1552 | io.WriteString(p.w, "include") |
| 1553 | if nn.Expr.GetFreeFloating().IsEmpty() { |
| 1554 | io.WriteString(p.w, " ") |
| 1555 | } |
| 1556 | p.Print(nn.Expr) |
| 1557 | p.printFreeFloating(nn, freefloating.End) |
| 1558 | } |
| 1559 | |
| 1560 | func (p *Printer) printExprIncludeOnce(n node.Node) { |
| 1561 | nn := n.(*expr.IncludeOnce) |
no test coverage detected