Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-08 Thread Aria AK
oh no, I am now accepted by the mailing list and I think I deleted this post after I got accepted by the mailing-list. I have no problem posting in mailing list now. thanks for your concern . On Fri, Aug 8, 2014 at 3:11 PM, stepharo wrote: > which post? > We received several post from you. > A

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-08 Thread stepharo
which post? We received several post from you. As soon as you register to the mailing, sending a mail with the correct account publish mails to the mailing-lists. On 7/8/14 04:52, aria2end wrote: why is it that my post is not yet accepted by the mailing list yet. what should I do ? -- View t

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread kilon alios
as far I can see with my test its returns a RBlockNode and all the code of the node is contained inside as regular nodes. Sure its not exactly simple to do, you will have to refactor through the classes to see which class corresponds to which message but looks doable to me and not very hard to do.

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread Clément Bera
2014-08-07 10:47 GMT+02:00 aria2end : > Yes Exactly. I want to see all the potential methods called from from this > method which is the second case. but I receive error using that script. > > MessageNotUnderstood: ByteSymbol>>implementors > > Ok this method is implemented in the image I use (Phar

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread Henrik Johansen
On 07 Aug 2014, at 10:41 , kilon alios wrote: > cant you also use the ast to find out how exactly Pharo which object and > which method it executes ? No. Consider: #do: aBlock aBlock value Finding the methods actually executed by this is a hard problem. You’d at least need inferred

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread aria2end
Yes Exactly. I want to see all the potential methods called from from this method which is the second case. but I receive error using that script. MessageNotUnderstood: ByteSymbol>>implementors -- View this message in context: http://forum.world.st/Seeing-all-the-methods-that-is-used-in-a-m

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread kilon alios
cant you also use the ast to find out how exactly Pharo which object and which method it executes ? On Thu, Aug 7, 2014 at 11:39 AM, kilon alios wrote: > Marcus has shown me previously ast with nodesDo: for example this code > show me the full ast for my class method blenderOpen of my class Eph

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread kilon alios
Marcus has shown me previously ast with nodesDo: for example this code show me the full ast for my class method blenderOpen of my class Ephestos. (Ephestos class compiledMethodAt: #blenderOpen ) ast nodesDo: [ :node| node inspect] and it opens one inspector per node messages that are "method c

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-07 Thread Clément Bera
2014-08-07 5:11 GMT+02:00 aria2end : > Hi, I know that I can see senders and implementers of a method but is there > any way to see all methods that are used in a method ? > This is impossible. The method called for each message send can only been known at runtime, because it depends on the recei

[Pharo-users] Seeing all the methods that is used in a method

2014-08-06 Thread aria2end
Hi, I know that I can see senders and implementers of a method but is there any way to see all methods that are used in a method ? or any way to see all the send messages to other methods limited to scope of a method ? Thanks, Aria -- View this message in context: http://forum.world.st/Se

[Pharo-users] Seeing all the methods that is used in a method

2014-08-06 Thread aria2end
Hi, I know that I can see senders and implementers of a method but is there any way to see all methods that are used in a method ? or any way to see all the send messages to other methods limited to scope of a method ? Thanks, Aria -- View this message in context: http://forum.world.st/Se

Re: [Pharo-users] Seeing all the methods that is used in a method

2014-08-06 Thread aria2end
why is it that my post is not yet accepted by the mailing list yet. what should I do ? -- View this message in context: http://forum.world.st/Seeing-all-the-methods-that-is-used-in-a-method-tp4771587p4772097.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.