kopia lustrzana https://github.com/backface/turtlestitch
slightly tweaked inheritance support
so sprites and the stage can share the same public protocolupd4.1
rodzic
abd7ad6a37
commit
cc47a6fb5a
|
@ -82,7 +82,7 @@ SpeechBubbleMorph, RingMorph, isNil, FileReader, TableDialogMorph,
|
||||||
BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, localize,
|
BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, localize,
|
||||||
TableMorph, TableFrameMorph, normalizeCanvas, BooleanSlotMorph, HandleMorph*/
|
TableMorph, TableFrameMorph, normalizeCanvas, BooleanSlotMorph, HandleMorph*/
|
||||||
|
|
||||||
modules.objects = '2017-May-12';
|
modules.objects = '2017-May-15';
|
||||||
|
|
||||||
var SpriteMorph;
|
var SpriteMorph;
|
||||||
var StageMorph;
|
var StageMorph;
|
||||||
|
@ -7200,10 +7200,16 @@ StageMorph.prototype.allDependentInvocationsOf
|
||||||
|
|
||||||
// StageMorph inheritance support - general
|
// StageMorph inheritance support - general
|
||||||
|
|
||||||
|
StageMorph.prototype.specimens = function () {
|
||||||
|
return [];
|
||||||
|
};
|
||||||
|
|
||||||
StageMorph.prototype.allSpecimens = function () {
|
StageMorph.prototype.allSpecimens = function () {
|
||||||
return [];
|
return [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
StageMorph.prototype.shadowAttribute = nop;
|
||||||
|
|
||||||
// StageMorph inheritance support - variables
|
// StageMorph inheritance support - variables
|
||||||
|
|
||||||
StageMorph.prototype.isVariableNameInUse
|
StageMorph.prototype.isVariableNameInUse
|
||||||
|
|
Ładowanie…
Reference in New Issue