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