1 2 3 4 5 6 7 8 9 10 11 12 13 | 1x 1x | function BaseScriptMessage(step, config, bot, logReporter, prevStepPromise) { this.config = config; this.bot = bot; this.logReporter = logReporter; this.step = step; this.stepFinishedPromise = null; } BaseScriptMessage.prototype.getStepFinishedPromise = function() { return this.stepFinishedPromise; } module.exports = BaseScriptMessage; |