kopia lustrzana https://github.com/backface/turtlestitch
fixed #213 - Empty else block breaks return to caller
Thanks, Art, for reporting this bug!pull/3/merge
rodzic
a8d08c147d
commit
3c209e8421
|
@ -1964,3 +1964,7 @@ ______
|
|||
131015
|
||||
------
|
||||
* Morphic: further condense damage list by merging nearby rectangles, thanks, Craxic!
|
||||
|
||||
131017
|
||||
------
|
||||
* Threads: fixed #213 - Empty else block breaks return to caller
|
||||
|
|
|
@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
|
|||
|
||||
// Global stuff ////////////////////////////////////////////////////////
|
||||
|
||||
modules.threads = '2013-October-09';
|
||||
modules.threads = '2013-October-17';
|
||||
|
||||
var ThreadManager;
|
||||
var Process;
|
||||
|
@ -1318,6 +1318,8 @@ Process.prototype.doIfElse = function () {
|
|||
} else {
|
||||
if (args[2]) {
|
||||
this.pushContext(args[2].blockSequence(), outer);
|
||||
} else {
|
||||
this.pushContext('doYield');
|
||||
}
|
||||
}
|
||||
if (this.context) {
|
||||
|
|
Ładowanie…
Reference in New Issue