CannotReturnError.st
changeset 7233 52b21f304183
parent 6009 a24f4df1cbef
child 7589 2ac0ac814fc8
equal deleted inserted replaced
7232:1d05a293b8b0 7233:52b21f304183
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'Kernel-Methods'
     7 	category:'Kernel-Methods'
     8 !
     8 !
     9 
     9 
       
    10 !CannotReturnError class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14     Raised if a method which was compiled non-resumable is asked to return.
       
    15     As non-resumable code is faster and shorter, the compilers do not
       
    16     generate resumable code by default.
       
    17     Resumability can be enforced by a compiler switch or via a #return/#resume directive.
       
    18 "
       
    19 ! !
    10 
    20 
    11 !CannotReturnError class methodsFor:'documentation'!
    21 !CannotReturnError class methodsFor:'documentation'!
    12 
    22 
    13 version
    23 version
    14     ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.2 2001-09-07 18:57:10 cg Exp $'
    24     ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.3 2003-04-24 08:25:28 cg Exp $'
    15 ! !
    25 ! !