(context, { root: rootVal })
| 4181 | return parser.parseElement("indirectExpression", root); |
| 4182 | } |
| 4183 | resolve(context, { root: rootVal }) { |
| 4184 | if (this._isAttribute) { |
| 4185 | return context.meta.runtime.resolveAttribute(rootVal, this._prop); |
| 4186 | } else if (this._isComputed) { |
| 4187 | return context.meta.runtime.resolveComputedStyle(rootVal, this._prop); |
| 4188 | } else if (this._isStyle) { |
| 4189 | return context.meta.runtime.resolveStyle(rootVal, this._prop); |
| 4190 | } else { |
| 4191 | return context.meta.runtime.resolveProperty(rootVal, this._prop); |
| 4192 | } |
| 4193 | } |
| 4194 | get lhs() { |
| 4195 | return { root: this.root }; |
| 4196 | } |
nothing calls this directly
no test coverage detected