(context, { root: rootVal })
| 4257 | } |
| 4258 | } |
| 4259 | resolve(context, { root: rootVal }) { |
| 4260 | var value; |
| 4261 | if (this.attribute) { |
| 4262 | if (this.attribute.type === "computedStyleRef") { |
| 4263 | value = context.meta.runtime.resolveComputedStyle(rootVal, this.attribute["name"]); |
| 4264 | } else if (this.attribute.type === "styleRef") { |
| 4265 | value = context.meta.runtime.resolveStyle(rootVal, this.attribute["name"]); |
| 4266 | } else { |
| 4267 | value = context.meta.runtime.resolveAttribute(rootVal, this.attribute.name); |
| 4268 | } |
| 4269 | } else { |
| 4270 | value = context.meta.runtime.resolveProperty(rootVal, this.prop.value); |
| 4271 | } |
| 4272 | return value; |
| 4273 | } |
| 4274 | get lhs() { |
| 4275 | return { root: this.root }; |
| 4276 | } |
nothing calls this directly
no test coverage detected