Continuation.st
changeset 23853 ebdceb0eb84d
parent 15554 b4d307032579
--- a/Continuation.st	Thu Mar 07 18:22:56 2019 +0100
+++ b/Continuation.st	Thu Mar 07 18:23:11 2019 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#Continuation
 	instanceVariableNames:'process id suspendContext'
 	classVariableNames:''
@@ -127,6 +129,7 @@
 !
 
 value: v
+    <resource: #todo>
     |cID|
 
     (cID := id) notNil ifTrue:[
@@ -150,6 +153,7 @@
 !Continuation methodsFor:'private'!
 
 terminate: aContext
+    <resource: #todo>
     self shouldImplement. 
 "/        | context |
 "/        context _ aContext.
@@ -178,6 +182,7 @@
 !Continuation methodsFor:'restoration'!
 
 restoreValues
+    <resource: #todo>
     self shouldImplement. 
 "/        | valueStream context |
 "/
@@ -191,6 +196,6 @@
 !Continuation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Continuation.st,v 1.16 2013-07-25 09:37:35 cg Exp $'
+    ^ '$Header$'
 ! !