mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-10 15:02:06 -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,
|
// The value will be populated once the reporter unyields,
|
||||||
// and passed up to the currentStackFrame on next execution.
|
// and passed up to the currentStackFrame on next execution.
|
||||||
return;
|
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];
|
argValues[inputName] = currentStackFrame.reported[inputName];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue