IncludeNode references a named node ( ! INCLUDE | INCLUDE | NOT INCLUDE )
| 295 | // ( ! INCLUDE <identity> | INCLUDE <identity> | NOT INCLUDE <identity> ) |
| 296 | // |
| 297 | IncludeNode struct { |
| 298 | negated bool |
| 299 | inlineExpr Node // a non-pointer copy of the referred to include, itself resolved |
| 300 | ExprNode Node // The expression of the referred to include |
| 301 | Identity *IdentityNode |
| 302 | Operator lex.Token |
| 303 | } |
| 304 | |
| 305 | // ArrayNode for holding multiple similar elements |
| 306 | // arg0 IN (arg1,arg2.....) |
nothing calls this directly
no outgoing calls
no test coverage detected