mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-22 22:12:28 -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) {
|
||||
/**
|
||||
* Top block of the thread
|
||||
* ID of top block of the thread
|
||||
* @type {!string}
|
||||
*/
|
||||
this.topBlock = firstBlock;
|
||||
/**
|
||||
* Next block that the thread will execute.
|
||||
* @type {string}
|
||||
* ID of next block that the thread will execute, or null if none.
|
||||
* @type {?string}
|
||||
*/
|
||||
this.nextBlock = firstBlock;
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue