mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-22 22:12:28 -05:00
Comment and else
for reporter finishes right away
This commit is contained in:
parent
b21c9edf04
commit
9d9749681b
1 changed files with 4 additions and 2 deletions
|
@ -62,9 +62,11 @@ var execute = function (sequencer, thread) {
|
|||
// The value will be populated once the reporter unyields,
|
||||
// and passed up to the currentStackFrame on next execution.
|
||||
return;
|
||||
} else {
|
||||
// Reporter finished right away; pop the stack.
|
||||
runtime.glowBlock(inputBlockId, false);
|
||||
thread.popStack();
|
||||
}
|
||||
runtime.glowBlock(inputBlockId, false);
|
||||
thread.popStack();
|
||||
}
|
||||
argValues[inputName] = currentStackFrame.reported[inputName];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue