diff --git a/whalesong/js-assembler/package.rkt b/whalesong/js-assembler/package.rkt index cc122ab..ef17a9f 100644 --- a/whalesong/js-assembler/package.rkt +++ b/whalesong/js-assembler/package.rkt @@ -399,10 +399,11 @@ M.modules[~s] = window.console.log('loaded ' + ~s); } }, - function(err) { + function(M, err) { if (window.console && window.console.log) { window.console.log('error: unable to load ' + ~s); - } + if (err && err.stack) { console.log(err.stack); } + } }, {});" (format "~a" (source-name src)) diff --git a/whalesong/js-assembler/runtime-src/runtime.js b/whalesong/js-assembler/runtime-src/runtime.js index 70622b9..a089765 100644 --- a/whalesong/js-assembler/runtime-src/runtime.js +++ b/whalesong/js-assembler/runtime-src/runtime.js @@ -1229,6 +1229,7 @@ exports['raiseOperatorApplicationError'] = raiseOperatorApplicationError; exports['raiseOperatorIsNotPrimitiveProcedure'] = raiseOperatorIsNotPrimitiveProcedure; exports['raiseUnimplementedPrimitiveError'] = raiseUnimplementedPrimitiveError; + exports['raiseModuleLoadingError'] = raiseModuleLoadingError; exports['finalizeClosureCall'] = finalizeClosureCall; diff --git a/whalesong/repl-prototype/htdocs/index.html b/whalesong/repl-prototype/htdocs/index.html index e489fe2..bd1bdf2 100644 --- a/whalesong/repl-prototype/htdocs/index.html +++ b/whalesong/repl-prototype/htdocs/index.html @@ -8,6 +8,8 @@