(ctx, lhs, value)
| 3828 | return { root: this.root }; |
| 3829 | } |
| 3830 | set(ctx, lhs, value) { |
| 3831 | ctx.meta.runtime.nullCheck(lhs.root, this.root); |
| 3832 | var runtime2 = ctx.meta.runtime; |
| 3833 | runtime2.implicitLoop(lhs.root, (elt) => { |
| 3834 | runtime2.setProperty(elt, this.prop.value, value); |
| 3835 | }); |
| 3836 | } |
| 3837 | }; |
| 3838 | var OfExpression = class _OfExpression extends Expression { |
| 3839 | static grammarName = "ofExpression"; |
nothing calls this directly
no test coverage detected