Add discretionary comments. This is not general-purpose, but specific to the repl situation we need for Whalesong.
This commit is contained in:
parent
cb2aea9e5a
commit
e4509b0886
|
@ -31,6 +31,12 @@
|
||||||
|
|
||||||
;; repl-compile: any [#:lang module-path] -> compiled-bytecode
|
;; repl-compile: any [#:lang module-path] -> compiled-bytecode
|
||||||
;; Compiles the given body in a toplevel context under the given language.
|
;; Compiles the given body in a toplevel context under the given language.
|
||||||
|
;; Compilation creates a fresh namespace each time to avoid one compilation
|
||||||
|
;; affecting the other.
|
||||||
|
;;
|
||||||
|
;; Note however, that the languages have to make sure not to maintain compilation
|
||||||
|
;; state themselves, since we reuse the language module to improve repl construction
|
||||||
|
;; time.
|
||||||
(define (repl-compile body #:lang [language-module-path 'racket/base])
|
(define (repl-compile body #:lang [language-module-path 'racket/base])
|
||||||
(parameterize ([current-namespace (make-repl-namespace language-module-path)])
|
(parameterize ([current-namespace (make-repl-namespace language-module-path)])
|
||||||
(compile body)))
|
(compile body)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user