for 1.1 only critical fixes should go in 1.0 and 1.0 should get out of the door :)
The real solution here is to send 'is: #ScriptEditorMorph' and implement
Object >> is: aSymbol "A means for cleanly replacing all isXXX like methods. Please use judiciously! Suggested by Igor Stasenko at http://lists.squeakfoundation.org/pipermail/squeak-dev/2009-June/136793.html"
^false
ScriptEditorMorph >> is: aSymbol ^ aSymbol = #ScriptEditorMorph or: [ super is: aSymbol ]
In this way you easily get rid of all #isXXX methods (at least, all that just answer the true or false constants). Much more interesting: when you unload EToys there is no knowledge about ScriptEditorMorph in unrelated classes (such as Morph or Object).
we do not have etoy related is: methods.... or we can remove it just straight Now I somehow like the idea. Stef