BooleanNode is n nodes and an operator operators can be only AND/OR
| 264 | // BooleanNode is n nodes and an operator |
| 265 | // operators can be only AND/OR |
| 266 | BooleanNode struct { |
| 267 | negated bool |
| 268 | Args []Node |
| 269 | Operator lex.Token |
| 270 | } |
| 271 | |
| 272 | // TriNode 3 part expression such as |
| 273 | // ARG1 Between ARG2 AND ARG3 |
nothing calls this directly
no outgoing calls
no test coverage detected