Пример #1
0
 protected AscendingArrayStepper(ActualArray array, IntegerValue index) {
   super(array, index);
   lastValueInternal = array.endOffset();
   /*
   udanax-top.st:55470:AscendingArrayStepper methodsFor: 'protected: create'!
   create: array {ActualArray} with: index {IntegerVar}
   	super create: array with: index.
   	lastValueInternal _ array endOffset!
   */
 }
Пример #2
0
 protected AscendingArrayStepper(ActualArray array) {
   super(array);
   lastValueInternal = array.endOffset();
   /*
   udanax-top.st:55466:AscendingArrayStepper methodsFor: 'protected: create'!
   create: array {ActualArray}
   	super create: array.
   	lastValueInternal _ array endOffset!
   */
 }