From 0003b294cb825d551e5d1ffb585bbd21c0847c60 Mon Sep 17 00:00:00 2001 From: Ray Schamp Date: Thu, 24 Nov 2016 10:36:30 -0500 Subject: [PATCH] Lint --- src/engine/runtime.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/engine/runtime.js b/src/engine/runtime.js index 6e4c0c87c..2244d1ed3 100644 --- a/src/engine/runtime.js +++ b/src/engine/runtime.js @@ -189,13 +189,13 @@ Runtime.BLOCK_GLOW_OFF = 'BLOCK_GLOW_OFF'; * Event name for glowing the green flag * @const {string} */ -Runtime.PROJECT_RUN_START = 'PROJECT_RUN_START' +Runtime.PROJECT_RUN_START = 'PROJECT_RUN_START'; /** * Event name for unglowing the green flag * @const {string} */ -Runtime.PROJECT_RUN_STOP = 'PROJECT_RUN_STOP' +Runtime.PROJECT_RUN_STOP = 'PROJECT_RUN_STOP'; /** * Event name for visual value report. @@ -661,6 +661,8 @@ Runtime.prototype._updateGlows = function (optExtraThreads) { /** * Emit run start/stop after each tick. Emits when `this.threads.length` goes * between non-zero and zero + * + * @param {number} threadCount The new threadCount */ Runtime.prototype._setThreadCount = function (threadCount) { if (this._threadCount === 0 && threadCount > 0) {