[Newbies] Tracing back objects

2007-05-25 Thread subbukk
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

Re: [Newbies] Tracing back objects

2007-05-25 Thread Bert Freudenberg
On May 25, 2007, at 12:18 , 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. Note that CompiledMethod someInstance is