newFunctionNode returns function call node.
(name, prefix string, args []node)
| 123 | |
| 124 | // newFunctionNode returns function call node. |
| 125 | func 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. |
| 130 | func testOp(r *scanner, op string) bool { |
no outgoing calls
no test coverage detected
searching dependent graphs…