1 2 3 4 5 6 7 8 9 10 11 12 13 | 498x 498x 498x 498x 498x 2x 498x 2x | 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; |