The Lambda Lab
/
projects
/
scheme.forth.jl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
6f3714a
)
call-cc almost working.
author
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 1 Aug 2018 13:51:20 +0000
(15:51 +0200)
committer
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 1 Aug 2018 13:51:20 +0000
(15:51 +0200)
src/scheme.4th
patch
|
blob
|
history
diff --git
a/src/scheme.4th
b/src/scheme.4th
index
0f2fc0d
..
36a8106
100644
(file)
--- a/
src/scheme.4th
+++ b/
src/scheme.4th
@@
-613,15
+613,19
@@
global-env obj!
2drop
;
2drop
;
-: restore-continuation ( continuation -- )
- \ TODO: replace current parameter and return stacks with
- \ contents of continuation object.
+: restore-continuation-with-arg ( continuation obj -- )
- 2dup >R >R
+ >R >R \ Store obj on return stack
+
+ 2dup >R >R \ Store copy of continuation on return stack
restore-param-stack
restore-param-stack
- R> R>
+ R> R> \ Pop continuation from return stack
+
+ R> R> \ Pop obj from return stack
+
+ 2swap
restore-return-stack
;
restore-return-stack
;
@@
-1769,7
+1773,22
@@
parse-idx-stack parse-idx-sp !
endof
continuation-type of
endof
continuation-type of
- \ TODO: Apply continuation
+ 2swap
+ nil? if
+ except-message: ." Continuations expect exactly 1 argument."
+ recoverable-exception throw
+ then
+
+ 2dup cdr
+
+ nil? not 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
endof
except-message: ." object '" drop print ." ' not applicable." recoverable-exception throw
@@
-2156,9
+2175,6
@@
parse-idx-stack parse-idx-sp !
\ }}}
\ }}}
-\ DEBUGGING
-xxxx
-
\ ---- Loading files ---- {{{
: load ( addr n -- finalResult )
\ ---- Loading files ---- {{{
: load ( addr n -- finalResult )