[squeak-dev] AndreasSystemProfiler missing CompiledMethod>>who

David T. Lewis lewis at mail.msen.com
Wed Mar 6 12:14:35 UTC 2013


On Tue, Mar 05, 2013 at 12:12:51PM +0100, Bert Freudenberg wrote:
> On 2013-03-05, at 12:06, Frank Shearar <frank.shearar at gmail.com> wrote:
> 
> > On 5 March 2013 00:46, David T. Lewis <lewis at mail.msen.com> wrote:
> >> This is just a convenience method that probably belongs in the AndreasSystemProfiler
> >> package (or in Squeak trunk?).
> >> 
> >> Or if I am guessing right it might be just a matter of changing the printOn:
> >> 
> >> QSystemTally>>printOn: aStream
> >>        aStream print: class; nextPutAll: '>>'; print: (method ifNotNil:[method selector storeString]).
> >>        aStream nextPutAll: ' -- '; print: tally.
> 
> That's the right fix, yes.
>

Trivial patch attached. Ron or Eliot, can one of you update this on
http://ss3.gemstone.com/ss/AndreasSystemProfiler?

Thanks!
Dave
 
-------------- next part --------------
'From Squeak3.11alpha of 1 March 2013 [latest update: #12488] on 6 March 2013 at 7:05:04 am'!

!QSystemTally methodsFor: 'report' stamp: 'dtl 3/4/2013 19:40'!
printOn: aStream
	aStream print: class; nextPutAll: '>>'; print: (method ifNotNil:[method selector storeString]).
	aStream nextPutAll: ' -- '; print: tally.! !


More information about the Squeak-dev mailing list