(ctx, lhs, value)
| 4110 | return { root: this.root }; |
| 4111 | } |
| 4112 | set(ctx, lhs, value) { |
| 4113 | ctx.meta.runtime.nullCheck(lhs.root, this.root); |
| 4114 | var runtime2 = ctx.meta.runtime; |
| 4115 | runtime2.implicitLoop(lhs.root, (elt) => { |
| 4116 | runtime2.setProperty(elt, this.prop.value, value); |
| 4117 | }); |
| 4118 | } |
| 4119 | delete(ctx, lhs) { |
| 4120 | ctx.meta.runtime.nullCheck(lhs.root, this.root); |
| 4121 | var runtime2 = ctx.meta.runtime; |
nothing calls this directly
no test coverage detected