(ctx, lhs, value)
| 4140 | return { root: this.root }; |
| 4141 | } |
| 4142 | set(ctx, lhs, value) { |
| 4143 | ctx.meta.runtime.nullCheck(lhs.root, this.root); |
| 4144 | ctx.meta.runtime.implicitLoop(lhs.root, (elt) => { |
| 4145 | value == null ? elt.removeAttribute(this.attribute.name) : elt.setAttribute(this.attribute.name, value); |
| 4146 | }); |
| 4147 | } |
| 4148 | }; |
| 4149 | var ArrayIndex = class _ArrayIndex extends Expression { |
| 4150 | static grammarName = "arrayIndex"; |
nothing calls this directly
no test coverage detected