Continuations objs are pairlike for GC marking.
[scheme.forth.jl.git] / src / scheme.4th
index 0f2fc0d..9347750 100644 (file)
@@ -551,11 +551,16 @@ global-env obj!
   depth 2- 2/ fixnum-type 2swap cons
 ;
 
-: make-continuation
+: make-continuation ( -- continuation true-obj )
+    \ true-obj allows calling code to detect whether
+    \ it is being called immediately following make-continuation
+    \ or by a restore-continuation.
 
   cons-param-stack
   cons-return-stack
   cons drop continuation-type
+
+  true boolean-type
 ;
 
 : continuation->pstack-list
@@ -613,15 +618,23 @@ global-env obj!
     2drop
 ;
 
-: restore-continuation ( continuation -- )
-  \ TODO: replace current parameter and return stacks with
-  \ contents of continuation object.
+: restore-continuation-with-arg ( continuation obj -- )
+
+    >R >R \ Store obj on return stack
 
-    2dup >R >R
+    2dup >R >R \ Store copy of continuation on return stack
 
     restore-param-stack
 
-    R> R>
+    R> R> \ Pop continuation from return stack
+
+    R> R> \ Pop obj from return stack
+
+    2swap
+
+    false boolean-type \ Add flag signifying continuation restore
+
+    2swap
 
     restore-return-stack
 ;
@@ -1769,7 +1782,22 @@ parse-idx-stack parse-idx-sp !
         endof
 
         continuation-type of
-          \ TODO: Apply continuation
+            2swap
+            nil? if
+                except-message: ." Continuations expect exactly 1 argument."
+                recoverable-exception throw
+            then
+
+            2dup cdr
+
+            nil? invert if
+                except-message: ." Continuations expect exactly 1 argument."
+                recoverable-exception throw
+            then
+
+            2drop car
+                
+            restore-continuation-with-arg
         endof
 
         except-message: ." object '" drop print ." ' not applicable." recoverable-exception throw
@@ -2073,6 +2101,7 @@ parse-idx-stack parse-idx-sp !
     symbol-type istype? if true exit then
     compound-proc-type istype? if true exit then
     port-type istype? if true exit then
+    continuation-type istype? if true exit then
 
     false
 ;
@@ -2156,9 +2185,6 @@ parse-idx-stack parse-idx-sp !
 
 \ }}}
 
-\ DEBUGGING
-xxxx
-
 \ ---- Loading files ---- {{{
 
 : load ( addr n -- finalResult )