MCPcopy Create free account
hub / github.com/antchfx/xpath / newFunctionNode

Function newFunctionNode

parse.go:125–127  ·  view source on GitHub ↗

newFunctionNode returns function call node.

(name, prefix string, args []node)

Source from the content-addressed store, hash-verified

123
124// newFunctionNode returns function call node.
125func newFunctionNode(name, prefix string, args []node) node {
126 return &functionNode{nodeType: nodeFunction, Prefix: prefix, FuncName: name, Args: args}
127}
128
129// testOp reports whether current item name is an operand op.
130func testOp(r *scanner, op string) bool {

Callers 1

parseMethodMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…