(function(app, core){ "use strict"; var should = core.should; function Command(name) { this.name = name; this.executionHandlers = []; } Command.prototype.execute = function (cmdArgs) { cmdArgs = cmdArgs || {}; cmdArgs.commandHandled = false; for(var i=0; i