newRootNode returns a root node.
(s string)
| 118 | |
| 119 | // newRootNode returns a root node. |
| 120 | func newRootNode(s string) node { |
| 121 | return &rootNode{nodeType: nodeRoot, slash: s} |
| 122 | } |
| 123 | |
| 124 | // newFunctionNode returns function call node. |
| 125 | func newFunctionNode(name, prefix string, args []node) node { |
no outgoing calls
no test coverage detected
searching dependent graphs…