Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Code to produce a list of classes
Last updated at 10:06 am UTC on 5 October 2020
 st := WriteStream on: ''.
 (Metaclass allInstances asSortedCollection: 
 [:a :b | a name < b name]) do: [:cl | st nextPutAll: (cl name copyReplaceAll: ' class' with: ''); cr].
 ptm := PluggableTextMorphWithModel new.
 ptm textMorph contents:  st contents.
 ptm  openInHand

ListOfClassesInSqueak5dot1
ListOfClassesInSqueak5dot2
ListOfClassesInSqueak5dot3