//
 // TODO Jun: Integrate this helper function into the reflection system
 private List<Obj> GetArrayElements(ProtoCore.Mirror.RuntimeMirror mirror, StackValue svArrayPointer)
 {
     Assert.IsTrue(svArrayPointer.optype == ProtoCore.DSASM.AddressType.ArrayPointer);
     Obj array = new Obj(svArrayPointer);
     return mirror.GetUtils().GetArrayElements(array);
 }