Comment and else for reporter finishes right away

This commit is contained in:
Tim Mickel 2016-06-20 14:28:12 -04:00
parent b21c9edf04
commit 9d9749681b

View file

@ -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];
}