newFuncNode returns a new FuncNode.
(name string)
| 76 | |
| 77 | // newFuncNode returns a new FuncNode. |
| 78 | func newFuncNode(name string) *FuncNode { |
| 79 | return &FuncNode{Param: name} |
| 80 | } |
| 81 | |
| 82 | // node() defines the node in a parse tree |
| 83 |
no outgoing calls
no test coverage detected
searching dependent graphs…