Re: [Pharo-users] View a class with inherited variables/methods

2016-03-08 Thread Henrik Nergaard
>From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of >Esteban A. Maringolo >Sent: Tuesday, March 8, 2016 9:03 PM >To: Any question about pharo is welcome >Subject: Re: [Pharo-users] View a class with inherited variables/methods >Hi Henrik, >2016-

Re: [Pharo-users] View a class with inherited variables/methods

2016-03-08 Thread Esteban A. Maringolo
Hi Henrik, 2016-03-08 16:57 GMT-03:00 Henrik Nergaard : > #withAllSubclasses > > TextMorphForFieldView withAllSuperclasses reversed collect: [ :cls | cls -> > {cls instVarNames . cls methods }]. I was doing something similar like: MyClass withAllSuperclasses reversed flatCollect: [ :cls | cls

Re: [Pharo-users] View a class with inherited variables/methods

2016-03-08 Thread Cyril Ferlicot D.
Le 08/03/2016 20:50, Esteban A. Maringolo a écrit : > Is there a way to view a class with all the inherited instance > variables and/or methods? > > I'm trying to understand some code, and because the inheritance tree > is not shallow, I'd like to see all the variables it has (both own and > inher

Re: [Pharo-users] View a class with inherited variables/methods

2016-03-08 Thread Henrik Nergaard
#withAllSubclasses TextMorphForFieldView withAllSuperclasses reversed collect: [ :cls | cls -> {cls instVarNames . cls methods }]. Best regards, Henrik -Original Message- From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of Esteban A. Maringolo Sent: Tuesday,