(parser, root)
| 4307 | this.args = { root, target }; |
| 4308 | } |
| 4309 | static parse(parser, root) { |
| 4310 | if (!parser.matchToken("in")) return; |
| 4311 | var target = parser.requireElement("unaryExpression"); |
| 4312 | var result = new _InExpression(root, target); |
| 4313 | if (parser.matchToken("where")) { |
| 4314 | result = new WhereExpression(result, CollectionExpression.parseOperand(parser)); |
| 4315 | } |
| 4316 | return parser.parseElement("indirectExpression", result); |
| 4317 | } |
| 4318 | resolve(context, { root: rootVal, target }) { |
| 4319 | if (rootVal == null) return []; |
| 4320 | var returnArr = []; |
nothing calls this directly
no test coverage detected