(ctx, lhs, value)
| 4448 | return { root: this.root }; |
| 4449 | } |
| 4450 | set(ctx, lhs, value) { |
| 4451 | ctx.meta.runtime.nullCheck(lhs.root, this.root); |
| 4452 | ctx.meta.runtime.implicitLoop(lhs.root, (elt) => { |
| 4453 | value == null ? elt.removeAttribute(this.attribute.name) : elt.setAttribute(this.attribute.name, value); |
| 4454 | }); |
| 4455 | } |
| 4456 | }; |
| 4457 | var ArrayIndex = class _ArrayIndex extends Expression { |
| 4458 | static grammarName = "arrayIndex"; |
nothing calls this directly
no test coverage detected