function_call node

This commit is contained in:
z7zmey
2017-12-17 23:00:10 +02:00
parent 3c6e40fbeb
commit 9095d3fef7
3 changed files with 42 additions and 4 deletions

View File

@@ -0,0 +1,38 @@
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
type FunctionCall struct {
node.SimpleNode
function node.Node
arguments []node.Node
}
func NewFunctionCall(function node.Node, arguments []node.Node) node.Node {
return FunctionCall{
node.SimpleNode{Name: "FunctionCall", Attributes: make(map[string]string)},
function,
arguments,
}
}
func (n FunctionCall) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.Name)
if n.function != nil {
fmt.Fprintf(out, "\n%vfunction:", indent+" ")
n.function.Print(out, indent+" ")
}
if n.arguments != nil {
fmt.Fprintf(out, "\n%varguments:", indent+" ")
for _, nn := range n.arguments {
nn.Print(out, indent+" ")
}
}
}