(n node.Node)
| 1531 | } |
| 1532 | |
| 1533 | func (p *Printer) printExprFunctionCall(n node.Node) { |
| 1534 | nn := n.(*expr.FunctionCall) |
| 1535 | p.printFreeFloating(nn, freefloating.Start) |
| 1536 | |
| 1537 | p.Print(nn.Function) |
| 1538 | |
| 1539 | p.printFreeFloating(nn.ArgumentList, freefloating.Start) |
| 1540 | io.WriteString(p.w, "(") |
| 1541 | p.joinPrint(",", nn.ArgumentList.Arguments) |
| 1542 | p.printFreeFloating(nn.ArgumentList, freefloating.ArgumentList) |
| 1543 | io.WriteString(p.w, ")") |
| 1544 | p.printFreeFloating(nn.ArgumentList, freefloating.End) |
| 1545 | |
| 1546 | p.printFreeFloating(nn, freefloating.End) |
| 1547 | } |
| 1548 | |
| 1549 | func (p *Printer) printExprInclude(n node.Node) { |
| 1550 | nn := n.(*expr.Include) |
no test coverage detected