comments
authorClaus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:26:02 +0200
changeset 7233 52b21f304183
parent 7232 1d05a293b8b0
child 7234 129ed61f9dff
comments
CannotResumeError.st
CannotReturnError.st
ContextError.st
--- a/CannotResumeError.st	Thu Apr 24 10:21:14 2003 +0200
+++ b/CannotResumeError.st	Thu Apr 24 10:26:02 2003 +0200
@@ -7,9 +7,19 @@
 	category:'Kernel-Methods'
 !
 
+!CannotResumeError class methodsFor:'documentation'!
+
+documentation
+"
+    Raised if a method which was compiled non-resumable is asked to do so.
+    As non-resumable code is faster and shorter, the compilers do not
+    generate resumable code by default.
+    Resumability can be enforced by a compiler switch or via a #return/#resume directive.
+"
+! !
 
 !CannotResumeError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CannotResumeError.st,v 1.2 2001-09-07 18:57:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CannotResumeError.st,v 1.3 2003-04-24 08:25:30 cg Exp $'
 ! !
--- a/CannotReturnError.st	Thu Apr 24 10:21:14 2003 +0200
+++ b/CannotReturnError.st	Thu Apr 24 10:26:02 2003 +0200
@@ -7,9 +7,19 @@
 	category:'Kernel-Methods'
 !
 
+!CannotReturnError class methodsFor:'documentation'!
+
+documentation
+"
+    Raised if a method which was compiled non-resumable is asked to return.
+    As non-resumable code is faster and shorter, the compilers do not
+    generate resumable code by default.
+    Resumability can be enforced by a compiler switch or via a #return/#resume directive.
+"
+! !
 
 !CannotReturnError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.2 2001-09-07 18:57:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.3 2003-04-24 08:25:28 cg Exp $'
 ! !
--- a/ContextError.st	Thu Apr 24 10:21:14 2003 +0200
+++ b/ContextError.st	Thu Apr 24 10:26:02 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Methods'
 !
 
+!ContextError class methodsFor:'documentation'!
+
+documentation
+"
+    The parent of context related resumability errors.
+"
+! !
 
 !ContextError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ContextError.st,v 1.2 2001-09-07 18:57:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ContextError.st,v 1.3 2003-04-24 08:26:02 cg Exp $'
 ! !