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

Function NewFunctionCall

node/expr/n_function_call.go:19–25  ·  view source on GitHub ↗

NewFunctionCall node constructor

(Function node.Node, ArgumentList *node.ArgumentList)

Source from the content-addressed store, hash-verified

17
18// NewFunctionCall node constructor
19func NewFunctionCall(Function node.Node, ArgumentList *node.ArgumentList) *FunctionCall {
20 return &FunctionCall{
21 FreeFloating: nil,
22 Function: Function,
23 ArgumentList: ArgumentList,
24 }
25}
26
27// SetPosition sets node position
28func (n *FunctionCall) SetPosition(p *position.Position) {

Callers 2

ParseMethod · 0.92
ParseMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…