compilation passes return third value: the continuation environment
* module/system/base/compile.scm: Expect compile passes to produce three values, not two. The third is the "continuation environment", the environment that can be used to compile a subsequent expression from the same source language. For example, expansion-time side effects can set the current module, which would be reflected appropriately in the continuation environment. * module/language/assembly/compile-bytecode.scm: * module/language/bytecode/spec.scm: * module/language/ecmascript/compile-ghil.scm: * module/language/ghil/compile-glil.scm: * module/language/glil/spec.scm: * module/language/objcode/spec.scm: * module/language/scheme/compile-ghil.scm: * module/system/base/compile.scm: Update compile passes to return a continuation environment.
This commit is contained in:
parent
275baf0113
commit
b41b92c9d1
8 changed files with 19 additions and 12 deletions
|
|
@ -157,7 +157,7 @@
|
|||
(define (compile-fold passes exp env opts)
|
||||
(if (null? passes)
|
||||
exp
|
||||
(receive (exp env) ((car passes) exp env opts)
|
||||
(receive (exp env cenv) ((car passes) exp env opts)
|
||||
(compile-fold (cdr passes) exp env opts))))
|
||||
|
||||
(define (compile-time-environment)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue