correcting the repl to use the loadAndInvoke method.
This commit is contained in:
parent
8e0bf9d2b3
commit
a371c3ffcf
|
@ -65,21 +65,17 @@ jQuery(document).ready(function() {
|
|||
// We then want to initialize the language module.
|
||||
var initializeLanguage = function(afterLanguageInitialization) {
|
||||
// Load up the language.
|
||||
M.modules['whalesong/wescheme/lang/semantics.rkt'] =
|
||||
M.installedModules['whalesong/wescheme/lang/semantics.rkt']();
|
||||
|
||||
var semanticsModule =
|
||||
M.modules['whalesong/wescheme/lang/semantics.rkt'];
|
||||
semanticsModule.invoke(
|
||||
M,
|
||||
function() {
|
||||
M.params.currentNamespace = semanticsModule.getExports();
|
||||
afterLanguageInitialization();
|
||||
},
|
||||
function(M, err) {
|
||||
// Nothing should work if we can't get this to work.
|
||||
alert("uh oh!: language could not be loaded.");
|
||||
});
|
||||
M.loadAndInvoke('whalesong/wescheme/lang/semantics.rkt',
|
||||
function() {
|
||||
var semanticsModule =
|
||||
M.modules['whalesong/wescheme/lang/semantics.rkt'];
|
||||
M.params.currentNamespace = semanticsModule.getExports();
|
||||
afterLanguageInitialization();
|
||||
},
|
||||
function(err) {
|
||||
// Nothing should work if we can't get this to work.
|
||||
alert("uh oh!: language could not be loaded.");
|
||||
});
|
||||
};
|
||||
repl.attr('disabled', 'true');
|
||||
repl.val('Please wait, initializing...');
|
||||
|
|
Loading…
Reference in New Issue
Block a user