UnaryNode negates a single node argument ( not | ! ) !eq(5,6) !true !(true OR false) !toint(now())
| 286 | // !(true OR false) |
| 287 | // !toint(now()) |
| 288 | UnaryNode struct { |
| 289 | Arg Node |
| 290 | Operator lex.Token |
| 291 | } |
| 292 | |
| 293 | // IncludeNode references a named node |
| 294 | // |
nothing calls this directly
no outgoing calls
no test coverage detected