[Newbies] Searching senders of a method

2012-03-03 Thread deejay220989
Hi, May I know the difference between: SystemNavigation default allCallsOn: #subclassResponsibility and ProtoObject allCallsOn: #subclassResponsibility It seems that "ProtoObject allCallsOn: #subclassResponsibility" returns 3 results lesser than "SystemNavigation default allCallsOn: #subclassRes

[Newbies] Re: Searching senders of a method

2012-03-03 Thread deejay220989
I see..I thought it will search for the method in the subclasses of ProtoObject too. As for me, it returns a SortedCollection (349 entries). Which version of Squeak are you using? Thanks! -- View this message in context: http://forum.world.st/Searching-senders-of-a-method-tp4441275p4441315.html

[Newbies] Re: Searching senders of a method

2012-03-03 Thread deejay220989
I'm using 4.2..now downloading 4.3 and will try to download 4.4 alpha..will let you know later. Thanks! -- View this message in context: http://forum.world.st/Searching-senders-of-a-method-tp4441275p4441333.html Sent from the Squeak - Beginners mailing list archive at Nabble.com. ___

[Newbies] Getting a list of selectors used in a method

2012-03-17 Thread deejay220989
Hi, Is there anyway I get get a list or a number of selectors used in a method? I tried using the compiledMethod literals and compiledMethod numLiterals but they include numbers which I do not want. It even returns the method and class name. I just want the selectors used in a method. Please adv