properly saving the module names for the js-implemented modules.
This commit is contained in:
parent
b12369a58e
commit
808087612d
|
@ -228,7 +228,8 @@
|
||||||
(get-provided-name-code bytecode))])
|
(get-provided-name-code bytecode))])
|
||||||
|
|
||||||
(make-UninterpretedSource
|
(make-UninterpretedSource
|
||||||
(format "
|
path
|
||||||
|
(format "
|
||||||
M.modules[~s] =
|
M.modules[~s] =
|
||||||
new plt.runtime.ModuleRecord(~s,
|
new plt.runtime.ModuleRecord(~s,
|
||||||
function(M) {
|
function(M) {
|
||||||
|
@ -274,7 +275,7 @@ M.modules[~s] =
|
||||||
[(SexpSource? src)
|
[(SexpSource? src)
|
||||||
#f]
|
#f]
|
||||||
[(UninterpretedSource? src)
|
[(UninterpretedSource? src)
|
||||||
#f]))
|
(rewrite-path (UninterpretedSource-path src))]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
#:transparent)
|
#:transparent)
|
||||||
(define-struct: SexpSource ([sexp : Any])
|
(define-struct: SexpSource ([sexp : Any])
|
||||||
#:transparent)
|
#:transparent)
|
||||||
(define-struct: UninterpretedSource ([datum : String]
|
(define-struct: UninterpretedSource ([path : Path]
|
||||||
|
[datum : String]
|
||||||
[neighbors : (Listof Source)])
|
[neighbors : (Listof Source)])
|
||||||
#:transparent)
|
#:transparent)
|
||||||
|
|
||||||
|
@ -38,7 +39,7 @@
|
||||||
[(StatementsSource? a-source)
|
[(StatementsSource? a-source)
|
||||||
"<StatementsSource>"]
|
"<StatementsSource>"]
|
||||||
[(UninterpretedSource? a-source)
|
[(UninterpretedSource? a-source)
|
||||||
"<UninterpretedSource>"]
|
(format "<UninterpretedSource ~a>" (UninterpretedSource-path a-source))]
|
||||||
[(MainModuleSource? a-source)
|
[(MainModuleSource? a-source)
|
||||||
(format "<MainModuleSource ~a>" (MainModuleSource-path a-source))]
|
(format "<MainModuleSource ~a>" (MainModuleSource-path a-source))]
|
||||||
[(SexpSource? a-source)
|
[(SexpSource? a-source)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user