mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-07 20:08:54 -04:00
Add implementation for ifElse
This commit is contained in:
parent
ca68c55d57
commit
0bf9ab59a1
3 changed files with 25 additions and 6 deletions
src/engine
|
@ -69,8 +69,8 @@ var execute = function (sequencer, thread) {
|
|||
},
|
||||
timeout: YieldTimers.timeout,
|
||||
stackFrame: currentStackFrame,
|
||||
startSubstack: function () {
|
||||
sequencer.stepToSubstack(thread);
|
||||
startSubstack: function (substackNum) {
|
||||
sequencer.stepToSubstack(thread, substackNum);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue