this.arrayExpr = new JimpleExpr(jimpleName);
this.indexExpr = JimpleExpr.integerConstant(offset);
}
public ArrayRef(String jimpleArrayName, String jimpleOffsetName) {
this.arrayExpr = new JimpleExpr(jimpleArrayName);
this.indexExpr = new JimpleExpr(jimpleOffsetName);
}