properly saving the module names for the js-implemented modules.

This commit is contained in:
Danny Yoo 2013-02-25 19:50:42 -07:00
parent b12369a58e
commit 808087612d
2 changed files with 6 additions and 4 deletions

View File

@ -228,7 +228,8 @@
(get-provided-name-code bytecode))])
(make-UninterpretedSource
(format "
path
(format "
M.modules[~s] =
new plt.runtime.ModuleRecord(~s,
function(M) {
@ -274,7 +275,7 @@ M.modules[~s] =
[(SexpSource? src)
#f]
[(UninterpretedSource? src)
#f]))
(rewrite-path (UninterpretedSource-path src))]))

View File

@ -26,7 +26,8 @@
#:transparent)
(define-struct: SexpSource ([sexp : Any])
#:transparent)
(define-struct: UninterpretedSource ([datum : String]
(define-struct: UninterpretedSource ([path : Path]
[datum : String]
[neighbors : (Listof Source)])
#:transparent)
@ -38,7 +39,7 @@
[(StatementsSource? a-source)
"<StatementsSource>"]
[(UninterpretedSource? a-source)
"<UninterpretedSource>"]
(format "<UninterpretedSource ~a>" (UninterpretedSource-path a-source))]
[(MainModuleSource? a-source)
(format "<MainModuleSource ~a>" (MainModuleSource-path a-source))]
[(SexpSource? a-source)