ImmutableArray.st
changeset 950 c8d84beadddd
parent 754 1363fa7dfcd1
child 1146 e3e399a85be0
--- a/ImmutableArray.st	Wed Sep 01 11:56:58 1999 +0200
+++ b/ImmutableArray.st	Wed Sep 01 22:03:44 1999 +0200
@@ -10,7 +10,7 @@
  hereby transferred.
 "
 
-Array subclass:#ImmutableArray
+Array variableSubclass:#ImmutableArray
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -168,7 +168,7 @@
 !ImmutableArray methodsFor:'queries'!
 
 isLiteral
-    "return true, if the receiver can be used as a literal
+    "return true, if the receiver can be used as a literal constant in ST syntax
      (i.e. can be used in constant arrays)"
 
     "yes, I must be"
@@ -197,5 +197,5 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.17 1998-08-03 17:09:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.18 1999-09-01 20:03:44 cg Exp $'
 ! !