--- linuxsampler/trunk/src/scriptvm/tree.h 2016/12/16 14:05:20 3060 +++ linuxsampler/trunk/src/scriptvm/tree.h 2017/04/21 13:33:03 3118 @@ -1,6 +1,6 @@ /* -*- c++ -*- * - * Copyright (c) 2014 - 2016 Christian Schoenebeck and Andreas Persson + * Copyright (c) 2014 - 2017 Christian Schoenebeck and Andreas Persson * * http://www.linuxsampler.org * @@ -340,6 +340,7 @@ bool isAssignable() const OVERRIDE { return dynVar->isAssignable(); } bool isPolyphonic() const OVERRIDE { return false; } void assign(Expression* expr) OVERRIDE { dynVar->assignExpr(expr); } + VMIntArrayExpr* asIntArray() const OVERRIDE { return dynVar->asIntArray(); } int evalInt() OVERRIDE; String evalStr() OVERRIDE; String evalCastToStr() OVERRIDE;