kopia lustrzana https://github.com/backface/turtlestitch
fixed # 179
don’t identify primitive (static) C-Slots as implicit formal parameterspull/3/merge
rodzic
f10a16e3f6
commit
1b05a11f14
|
@ -5262,7 +5262,7 @@ CommandSlotMorph.prototype.evaluate = function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
CommandSlotMorph.prototype.isEmptySlot = function () {
|
CommandSlotMorph.prototype.isEmptySlot = function () {
|
||||||
return this.nestedBlock() === null;
|
return !this.isStatic && (this.nestedBlock() === null);
|
||||||
};
|
};
|
||||||
|
|
||||||
// CommandSlotMorph context menu ops
|
// CommandSlotMorph context menu ops
|
||||||
|
|
|
@ -2015,3 +2015,4 @@ ______
|
||||||
* Localization and Portuguese translation updates, thanks, Manuel!
|
* Localization and Portuguese translation updates, thanks, Manuel!
|
||||||
* Catalan translation update, thanks, Bernat!!
|
* Catalan translation update, thanks, Bernat!!
|
||||||
* Threads: Text comparisons are now case-sensitive („fixes“ #175)
|
* Threads: Text comparisons are now case-sensitive („fixes“ #175)
|
||||||
|
* Threads: fixed # 179 - don’t identify primitive (static) C-Slots as implicit formal parameters
|
||||||
|
|
Ładowanie…
Reference in New Issue