Today on the train I was a bit bored on what I can do with CompiledMethods…
It seems like there are no inspection methods on CompiledMethods. Now I lets say I use Pharo from the command line (we're almost there…) then I would like to have a small interface to browse and navigate through methods… (Object >> #at:) overrides "return all direct overrides of this method" (Bag >> #at:) super "return the method I override" (Bag >> #at:) superChain "return all implementations in superclasses" (Object >> #name) senders (Object >> #name) implementors instead of doing something like SystemNavigation default allCallsOn: #name "(BTW I would prefer allSendersOf: #name)" What do you think? Does this make sense or not? cami
