(context, { parts } = {})
| 5153 | return new _QueryRef(queryValue, args, template); |
| 5154 | } |
| 5155 | resolve(context, { parts } = {}) { |
| 5156 | if (this.template) { |
| 5157 | return new TemplatedQueryElementCollection(this.css, context.me, parts, context.meta.runtime); |
| 5158 | } else { |
| 5159 | return new ElementCollection(this.css, context.me, false, context.meta.runtime); |
| 5160 | } |
| 5161 | } |
| 5162 | get lhs() { |
| 5163 | return this.template ? { parts: this.templateArgs } : {}; |
| 5164 | } |