mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Improve JSDoc on Thread
This commit is contained in:
parent
7a5341b863
commit
773f2e1bbc
1 changed files with 4 additions and 3 deletions
|
@ -5,12 +5,13 @@
|
||||||
*/
|
*/
|
||||||
function Thread (firstBlock) {
|
function Thread (firstBlock) {
|
||||||
/**
|
/**
|
||||||
* Top block of the thread
|
* ID of top block of the thread
|
||||||
|
* @type {!string}
|
||||||
*/
|
*/
|
||||||
this.topBlock = firstBlock;
|
this.topBlock = firstBlock;
|
||||||
/**
|
/**
|
||||||
* Next block that the thread will execute.
|
* ID of next block that the thread will execute, or null if none.
|
||||||
* @type {string}
|
* @type {?string}
|
||||||
*/
|
*/
|
||||||
this.nextBlock = firstBlock;
|
this.nextBlock = firstBlock;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue