Re: [Pharo-users] how to see methods implemented in super classes

2017-01-24 Thread Denis Kudriashov
Hi. 2015-05-15 7:01 GMT+02:00 Sanjay Minni : > Hi > > is there a way to see in the browse all the methods implemented in the > super > classes as well, maybe in a different colour, > > i thought it was possible but am unable to find it > I also always miss it. That's why I add it in Calypso brow

Re: [Pharo-users] how to see methods implemented in super classes

2017-01-23 Thread Peter Goodall
Thanks Ben, Giving it a try. Cheers... On Tue, Jan 24, 2017 at 10:51 AM, Ben Coman [via Smalltalk] < ml-node+s1294792n4930528...@n4.nabble.com> wrote: > You might want to try Calypso. > http://dionisiydk.blogspot.com.au/2016/12/calypso-new- > system-browser-for-pharo.html > > Note this only wor

Re: [Pharo-users] how to see methods implemented in super classes

2017-01-23 Thread Ben Coman
You might want to try Calypso. http://dionisiydk.blogspot.com.au/2016/12/calypso-new-system-browser-for-pharo.html Note this only works for the current trunk of Pharo 6, which you can get via PharoLauncher, or.. http://files.pharo.org/vm/pharo-spur32/ http://files.pharo.org/image/60/ cheers -ben

Re: [Pharo-users] how to see methods implemented in super classes

2017-01-23 Thread Peter Goodall
Hello, I've just started using Pharo again after a few years absence. It is becoming a very nice environment. I completely agree with Sanjay that visibility of inherited methods and protocols is vital for several reasons: * The interface of the class I am editing includes all of its inherited m

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-17 Thread stepharo
The problem is that you have to flatten inheritance so this means that we would have to prefix methods based on the classes because just putting grey does not help. Long time ago there was such browser but it was not really good so we removed it. Now put yourself in inheritance mode and you can

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-15 Thread seb NZOGANG
thanks Sanjay 2015-05-15 11:16 UTC+02:00, Sanjay Minni : > Thanks ... while I can get the hierarchy for a locally implemented method, > is > there a way for knowing implemented methods in the super class ? > > The browser in Dolphin from Object-Arts has an option "show inherited > methods" in whic

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-15 Thread Sanjay Minni
Thanks ... while I can get the hierarchy for a locally implemented method, is there a way for knowing implemented methods in the super class ? The browser in Dolphin from Object-Arts has an option "show inherited methods" in which it shows all methods incl those in the super class hierarchy in the

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-15 Thread Nicolai Hess
2015-05-15 8:56 GMT+02:00 Sanjay Minni : > > i.e. - can I see the methods defined in the superclass in the circled panel > > > Not in the default browser. You can only see the little up-arrow, if the method is defined in this class and at least

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-15 Thread Sanjay Minni
i.e. - can I see the methods defined in the superclass in the circled panel Sanjay Minni wrote > Hi > > is there a way to see in the browse all the methods implemented in the > super classes as well, maybe in a different colour, > > i thoug