From c1ced1eaddd6047f93838f890fd83e124e044dc2 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 4 Jul 2017 09:34:15 -0400 Subject: [PATCH] fix index setting, thanks mzfhhhh --- script.d | 4 ++++ 1 file changed, 4 insertions(+) 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 {