fix index setting, thanks mzfhhhh

This commit is contained in:
Adam D. Ruppe 2017-07-04 09:34:15 -04:00
parent f26fb2a32d
commit c1ced1eadd
1 changed files with 4 additions and 0 deletions

View File

@ -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 {