ImmutableArray.st
branchjv
changeset 17976 50c2416f962a
parent 17940 985e22966acb
child 18011 deb0c3355881
--- a/ImmutableArray.st	Mon Oct 29 17:05:17 2012 +0000
+++ b/ImmutableArray.st	Mon Oct 29 22:07:56 2012 +0000
@@ -147,6 +147,10 @@
 
 !ImmutableArray methodsFor:'queries'!
 
+isImmutable
+    ^ true
+!
+
 isLiteral
     "return true, if the receiver can be used as a literal constant in ST syntax
      (i.e. can be used in constant arrays)"
@@ -177,13 +181,13 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.30 2012/04/21 16:00:59 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.31 2012/10/16 15:11:40 cg Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.30 2012/04/21 16:00:59 stefan Exp §'
+    ^ '§Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.31 2012/10/16 15:11:40 cg Exp §'
 !
 
 version_SVN
-    ^ '$Id: ImmutableArray.st 10807 2012-05-05 21:58:24Z vranyj1 $'
+    ^ '$Id: ImmutableArray.st 10858 2012-10-29 22:07:56Z vranyj1 $'
 ! !