Decomp.st
changeset 326 d2858404a4a4
parent 293 bc0459613b27
child 327 38119b9c1623
--- a/Decomp.st	Mon Aug 05 18:57:35 1996 +0200
+++ b/Decomp.st	Sat Aug 10 00:31:00 1996 +0200
@@ -17,7 +17,7 @@
 	category:'System-Compiler'
 !
 
-!Decompiler class methodsFor:'documentation'!
+!Decompiler  class methodsFor:'documentation'!
 
 copyright
 "
@@ -41,7 +41,7 @@
 "
 ! !
 
-!Decompiler class methodsFor:'decompiling'!
+!Decompiler  class methodsFor:'decompiling'!
 
 decompile:aMethod
     ^ (self new) decompile:aMethod to:Transcript
@@ -392,9 +392,12 @@
     index := index + 1.
 "/    listStream show:specialIndex printString.
     listStream show:(#(Array String FloatArray DoubleArray
-                       Point Symbol Smalltalk Processor) at:specialIndex + 1)
+                       Point Symbol Smalltalk Processor 
+                       Set IdentitySet Dictionary IdentityDictionary
+                       Semaphore OrderedCollection) at:specialIndex + 1)
 
     "Modified: 16.4.1996 / 20:28:53 / cg"
+
 !
 
 showSpecialSend:byte
@@ -1183,8 +1186,8 @@
     "Modified: 2.9.1995 / 00:12:11 / claus"
 ! !
 
-!Decompiler class methodsFor:'documentation'!
+!Decompiler  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/Decomp.st,v 1.14 1996-06-30 12:21:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/Decomp.st,v 1.15 1996-08-09 22:31:00 stefan Exp $'
 ! !