March 30, 2011
2:38 a.m.
Comment #9 on issue 3088 by vonbecm...@gmail.com: MNU Text>>withBlanksTrimmed http://code.google.com/p/pharo/issues/detail?id=3088 if you execute this query SourcedMethodReference allInstances select: [:each | each stringVersion class == Text ] it will give you these methods Announcement >> #asAnnouncement Announcement >> #open that have a Text as a string version. so, you get a Text for a Text when you invoke asStringOrText therefore, it produce a MNU in the following expression PluggableListMorph>>basicKeyPressed ... a asString withBlanksTrimmed asLowercase beginsWith: lastKeystrokes ...