Block.st
changeset 25336 801021254f36
parent 25264 178c4ba7a8a8
equal deleted inserted replaced
25335:de6ea4d4a5d0 25336:801021254f36
   666 
   666 
   667     ^ self on:exceptionClassOrSignal do:handler
   667     ^ self on:exceptionClassOrSignal do:handler
   668 
   668 
   669     "Created: / 28-08-2010 / 14:41:15 / cg"
   669     "Created: / 28-08-2010 / 14:41:15 / cg"
   670 ! !
   670 ! !
   671 
       
   672 
   671 
   673 !Block methodsFor:'Javascript support'!
   672 !Block methodsFor:'Javascript support'!
   674 
   673 
   675 _at:index
   674 _at:index
   676     "this is a synthetic selector, generated by the compiler,
   675     "this is a synthetic selector, generated by the compiler,
  2900     "
  2899     "
  2901 !
  2900 !
  2902 
  2901 
  2903 repeat
  2902 repeat
  2904     "repeat the receiver forever - same as loop, for ST-80 compatibility.
  2903     "repeat the receiver forever - same as loop, for ST-80 compatibility.
  2905       (the receiver block should contain a return somewhere)."
  2904      (the receiver block should contain a return somewhere)."
  2906 
  2905 
  2907     self value.
  2906     self value.
  2908     thisContext restart
  2907     thisContext restart
  2909 
  2908 
  2910     "Modified: 18.4.1996 / 13:50:55 / cg"
  2909     "Modified: 18.4.1996 / 13:50:55 / cg"