Sept. 24, 2008
7:03 p.m.
Hi I'm reading innocuousName allKnownNames allSubmorphNamesDo: and friends It seems to me that Morph submorph elements could be given names from the user interface and this would define automatically instance variables or something like that with the given name. My gut feeling is shouting inside me to tell me that we should remove that. I would really like to know your point of view. I checked in Squeak2.8 allKnownNames "Answer a list of all the names of all named objects borne in my instance variable values" ^ self instanceVariableValues select: [:e | (e ~~ nil) and: [e knownName ~~ nil]] thenCollect: [:e | e knownName] Stef