[Newbies] Re: Tracing back objects

2007-05-25 Thread Klaus D. Witzel

On Fri, 25 May 2007 12:18:38 +0200, subbukk wrote:


Hi,

The following code:
 CompiledMethod allInstances inject: (CompiledMethod allInstances first)  
into:

[:m :i | i size  m size ifTrue: [i] ifFalse: [m]].

gives the largest method as an object. Is there an efficient way to  
trace back

the method selector and its class without doing a brute force lookup?


On pre-traits images you'd need (aMethod who) but from 3.9 on #who is  
deprecated. If you're on 3.9 the comment in #who tells the fast way.


/Klaus


TIA .. Subbu



___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


Re: [Newbies] Re: Tracing back objects

2007-05-25 Thread subbukk
On Friday 25 May 2007 5:02 pm, Klaus D. Witzel wrote:
 On pre-traits images you'd need (aMethod who) but from 3.9 on #who is
 deprecated. If you're on 3.9 the comment in #who tells the fast way.

Thanks. methodClass and selector worked. .. Subbu
___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners