[comp.lang.smalltalk] anyone done a Signal browser?

huggins@ticipa.ti.com (Gray Huggins) (06/08/91)

We are using st80 r4.  Has anyone done a signal heirarchy browser?
Seems like a handy tool.  Currently I have to BTFM to determine the
parents of any given signal, (or inspect that instance of Signal).

Here is a snipit that should find and dump all known signals.

	
(Signal allInstances 
	asSortedCollection: [ :a :b | ((a nameClass printString) <= (b nameClass printString)) ] )
		 do: [ :sig | 		
			Transcript show: 
			(sig nameClass printString), '>>',
			(sig nameMessage printString); cr.
	].

--
Gray Huggins                   Internet: huggins@ticipa.csc.ti.com
Texas Instruments                                          
PO Box 655012  M/S 3635        TI MSG:  GHUG
Dallas, TX 75265               Voice:   (214) 917-2202