(context, { parts } = {})
| 4810 | return new _QueryRef(queryValue, args, template); |
| 4811 | } |
| 4812 | resolve(context, { parts } = {}) { |
| 4813 | if (this.template) { |
| 4814 | return new TemplatedQueryElementCollection(this.css, context.me, parts, context.meta.runtime); |
| 4815 | } else { |
| 4816 | return new ElementCollection(this.css, context.me, false, context.meta.runtime); |
| 4817 | } |
| 4818 | } |
| 4819 | get lhs() { |
| 4820 | return this.template ? { parts: this.templateArgs } : {}; |
| 4821 | } |