fixing a bug with boxenv

This commit is contained in:
Danny Yoo 2011-04-01 23:05:00 -04:00
parent 49ff8c0aa1
commit f26b23d821
2 changed files with 9 additions and 1 deletions

View File

@ -89,7 +89,7 @@
[(InstallValue? exp)
(loop (InstallValue-body exp) cenv)]
[(BoxEnv? exp)
'()]
(loop (BoxEnv-body exp) cenv)]
[(LetRec? exp)
(let ([new-cenv (append (map (lambda: ([p : Lam])
(extract-static-knowledge

View File

@ -790,6 +790,14 @@
#:control-limit 3)
(test '(begin (define counter
(let ([x 0])
(lambda ()
(set! x (add1 x))
x)))
(list (counter) (counter) (counter)))
'(1 2 3))