MCPcopy Create free account
hub / github.com/expr-lang/expr / CallNode

Struct CallNode

ast/node.go:177–181  ·  view source on GitHub ↗

CallNode represents a function or a method call.

Source from the content-addressed store, hash-verified

175
176// CallNode represents a function or a method call.
177type CallNode struct {
178 base
179 Callee Node // Node of the call. Like "foo" in "foo()".
180 Arguments []Node // Arguments of the call.
181}
182
183// BuiltinNode represents a builtin function call.
184type BuiltinNode struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected