mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 23:12:24 -05:00
Lint
This commit is contained in:
parent
55ac7e269c
commit
0003b294cb
1 changed files with 4 additions and 2 deletions
|
@ -189,13 +189,13 @@ Runtime.BLOCK_GLOW_OFF = 'BLOCK_GLOW_OFF';
|
||||||
* Event name for glowing the green flag
|
* Event name for glowing the green flag
|
||||||
* @const {string}
|
* @const {string}
|
||||||
*/
|
*/
|
||||||
Runtime.PROJECT_RUN_START = 'PROJECT_RUN_START'
|
Runtime.PROJECT_RUN_START = 'PROJECT_RUN_START';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event name for unglowing the green flag
|
* Event name for unglowing the green flag
|
||||||
* @const {string}
|
* @const {string}
|
||||||
*/
|
*/
|
||||||
Runtime.PROJECT_RUN_STOP = 'PROJECT_RUN_STOP'
|
Runtime.PROJECT_RUN_STOP = 'PROJECT_RUN_STOP';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event name for visual value report.
|
* 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
|
* Emit run start/stop after each tick. Emits when `this.threads.length` goes
|
||||||
* between non-zero and zero
|
* between non-zero and zero
|
||||||
|
*
|
||||||
|
* @param {number} threadCount The new threadCount
|
||||||
*/
|
*/
|
||||||
Runtime.prototype._setThreadCount = function (threadCount) {
|
Runtime.prototype._setThreadCount = function (threadCount) {
|
||||||
if (this._threadCount === 0 && threadCount > 0) {
|
if (this._threadCount === 0 && threadCount > 0) {
|
||||||
|
|
Loading…
Reference in a new issue