Re: [Pharo-project] About getting supersending methods

2008-06-20 Thread Adrian Lienhard
Hi Stef, It seems like the code you posted is more complex than it needs to be. Wouldn't the following three lines of code do the same? Getting all super sending methods of a class: Morph methods select: #sendsToSuper Getting all super sending methods of a class and its

Re: [Pharo-project] About getting supersending methods

2008-06-20 Thread Adrian Lienhard
Hi Stef, It seems like the code you posted is more complex than it needs to be. Wouldn't the following three lines of code do the same? Getting all super sending methods of a class: Morph methods select: #sendsToSuper Getting all super sending methods of a class and its

Re: [Pharo-project] About getting supersending methods

2008-06-20 Thread Lukas Renggli
Using OB-Refectory you can do: Open Environment | Select Methods And enter: [ :each | each sendsToSuper ] If you do that on an already scoped browser (e.g. Open Environment | Subclasses), you get what you want even with less coding. If you think this is generally useful to find