}
//array length instruction
public void visitARRAYLENGTH(ARRAYLENGTH instruction) {
Expression target = context.getExpressions().pop();
ArrayLength arrayLength = new ArrayLength(context.getCurrentInstruction(), target);
context.getExpressions().push(arrayLength);
}