still trying to catch bug involving call/cc and the environment. I think I've forgotten to capture only the portion of the environment up to prompt.

This commit is contained in:
Danny Yoo 2011-04-02 00:29:16 -04:00
parent c0d18edca8
commit 7751813bde
2 changed files with 13 additions and 1 deletions

View File

@ -290,7 +290,8 @@ EOF
", "))]
[(PopEnvironment? stmt)
(if (= (PopEnvironment-skip stmt) 0)
(format "MACHINE.env.length = MACHINE.env.length - ~a;" (PopEnvironment-n stmt))
(format "MACHINE.env.length = MACHINE.env.length - ~a;"
(PopEnvironment-n stmt))
(format "MACHINE.env.splice(MACHINE.env.length-(~a),~a);"
(+ (PopEnvironment-skip stmt)
(PopEnvironment-n stmt))

View File

@ -69,6 +69,17 @@ EOF
(test '(begin (define program (lambda ()
(let ((y (call/cc (lambda (c) c))))
(display 1)
(call/cc (lambda (c) (y c)))
(display 2)
(call/cc (lambda (c) (y c)))
(display 3))))
(program))
"11213")
(test '(display 42)
"42")