extracting the lambda environment just once, to make it easier to work with the lam+cenv structure

This commit is contained in:
Danny Yoo 2012-03-23 14:55:29 -04:00
parent 956238af05
commit e16a66f20b
2 changed files with 4 additions and 4 deletions

View File

@ -235,7 +235,7 @@
(loop (Branch-consequent exp) cenv)
(loop (Branch-alternative exp) cenv))]
[(Lam? exp)
(cons (make-lam+cenv exp cenv)
(cons (make-lam+cenv exp (extract-lambda-cenv exp cenv))
(loop (Lam-body exp)
(extract-lambda-cenv exp cenv)))]
[(CaseLam? exp)
@ -1022,7 +1022,7 @@
;; Closures will target their value to the 'val register, and use return linkage.
(define (compile-lambda-body exp cenv)
(parameterize ([current-lambda-being-compiled exp])
(define all-applications (collect-lam-applications exp (extract-lambda-cenv exp cenv)))
(define all-applications (collect-lam-applications exp cenv))
(let: ([maybe-unsplice-rest-argument : InstructionSequence
(if (Lam-rest? exp)
@ -1040,7 +1040,7 @@
empty-instruction-sequence)]
[lam-body-code : InstructionSequence
(compile (Lam-body exp)
(extract-lambda-cenv exp cenv)
cenv
'val
return-linkage)])

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.227")
(define version "1.228")