Adding method to simplify load-and-invoking of modules.

This commit is contained in:
Danny Yoo 2013-03-27 16:15:13 -06:00
parent 569058c2f2
commit 8e0bf9d2b3

View File

@ -341,6 +341,27 @@
} }
}; };
Machine.prototype.loadAndInvoke = function(moduleName, success, fail) {
var that = this;
runtime.currentModuleLoader(
that,
moduleName,
function() {
that.modules[moduleName] = that.installedModules[moduleName]();
that.modules[moduleName].invoke(that,
function() {
success();
},
function(M, err) {
fail(err);
});
},
function() {
fail();
});
};
// Try to get the continuation mark key used for procedure application tracing. // Try to get the continuation mark key used for procedure application tracing.
var getTracedAppKey = function(MACHINE) { var getTracedAppKey = function(MACHINE) {
@ -824,8 +845,7 @@
var loop = function() { var loop = function() {
if (mainModules.length > 0) { if (mainModules.length > 0) {
var nextModuleName = mainModules.shift(); var nextModuleName = mainModules.shift();
machine.modules[nextModuleName] = machine.installedModules[nextModuleName](); machine.loadAndInvoke(nextModuleName, loop, fail);
machine.modules[nextModuleName].invoke(machine, loop, fail);
} else { } else {
setReadyTrue(); setReadyTrue();
succ(); succ();