MCPcopy Create free account
hub / github.com/z7zmey/php-parser / printExprFunctionCall

Method printExprFunctionCall

printer/pretty_printer.go:1101–1108  ·  view source on GitHub ↗
(n node.Node)

Source from the content-addressed store, hash-verified

1099}
1100
1101func (p *PrettyPrinter) printExprFunctionCall(n node.Node) {
1102 nn := n.(*expr.FunctionCall)
1103
1104 p.Print(nn.Function)
1105 io.WriteString(p.w, "(")
1106 p.joinPrint(", ", nn.ArgumentList.Arguments)
1107 io.WriteString(p.w, ")")
1108}
1109
1110func (p *PrettyPrinter) printExprInclude(n node.Node) {
1111 nn := n.(*expr.Include)

Callers 1

printNodeMethod · 0.95

Calls 2

PrintMethod · 0.95
joinPrintMethod · 0.95

Tested by

no test coverage detected