On Sep 1, 2011, at 12:35 AM, Camillo Bruni wrote:
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" Look in Nautilus, I have wrote an extension for that
(Bag >> #at:) super "return the method I override" Bag super lookupSelector: #at: ?
(Bag >> #at:) superChain "return all implementations in superclasses" +1
(Object >> #name) senders +1
(Object >> #name) implementors +1
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
Ben ;)