FuncNode represents a string function.
| 18 | |
| 19 | // FuncNode represents a string function. |
| 20 | FuncNode struct { |
| 21 | Param string |
| 22 | Name string |
| 23 | Args []Node |
| 24 | } |
| 25 | |
| 26 | // ListNode represents a list of nodes. |
| 27 | ListNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected