diff --git a/script.d b/script.d index e7ff72e..83f2a12 100644 --- a/script.d +++ b/script.d @@ -1309,6 +1309,10 @@ class IndexExpression : VariableExpression { return this.getVarFrom(sc, *v); } } + + override ref var setVar(PrototypeObject sc, var t, bool recurse = true, bool suppressOverloading = false) { + return getVar(sc,recurse) = t; + } } class SliceExpression : Expression {