trying to get the repl-compile helping.

This commit is contained in:
Danny Yoo 2013-02-27 17:13:19 -07:00
parent 0a3b0cd023
commit 374703cb4e
2 changed files with 36 additions and 2 deletions

View File

@ -0,0 +1,28 @@
#lang racket/base
(define this-namespace (make-base-empty-namespace))
(define (make-repl-namespace [module-path 'racket/base])
(parameterize ([current-namespace this-namespace])
(dynamic-require module-path 0))
(define ns (make-empty-namespace))
(parameterize ([current-namespace ns])
(namespace-attach-module this-namespace module-path)
(namespace-require/copy module-path))
ns)
(define memoized-table (make-weak-hash))
(define (repl-compile body #:lang [module-path 'racket/base])
(define key (cons body module-path))
(hash-ref memoized-table key (lambda ()
(parameterize ([current-namespace (make-repl-namespace module-path)])
(define compiled (compile body))
(hash-set! memoized-table key compiled)
compiled))))
(for ([i 10])
(time (repl-compile '(* x 3) #:lang 'whalesong/lang/whalesong))
(time (repl-compile '(/ x 3) #:lang 'whalesong/lang/whalesong)))

View File

@ -34,8 +34,14 @@ $(document).ready(function() {
COMPILED.push(compiledResult); COMPILED.push(compiledResult);
eval(compiledResult.compiled); eval(compiledResult.compiled);
// FIXME // FIXME
plt.runtime.currentMachine.modules['whalesong/repl-prototype/anonymous-module.rkt'].invoke(); plt.runtime.currentMachine.modules['whalesong/repl-prototype/anonymous-module.rkt'].invoke(
after(); plt.runtime.currentMachine,
function() {
after();
},
function() {
after();
});
}; };
var onError = function(err) { var onError = function(err) {
console.log("error", err); console.log("error", err);