ImmutableArray.st
changeset 12455 d34abbe4c841
parent 9237 86e0ef73d524
child 12463 6b3a71aad451
--- a/ImmutableArray.st	Thu Nov 05 15:33:52 2009 +0100
+++ b/ImmutableArray.st	Thu Nov 05 15:34:07 2009 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libcomp' }"
 
 Array variableSubclass:#ImmutableArray
@@ -89,6 +88,12 @@
     "Modified: / 3.8.1998 / 14:45:30 / cg"
 ! !
 
+!ImmutableArray methodsFor:'converting'!
+
+asImmutableArray
+    ^ self
+! !
+
 !ImmutableArray methodsFor:'copying'!
 
 copyEmpty
@@ -200,5 +205,9 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.23 2006-03-06 09:00:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.24 2009-11-05 14:34:07 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.24 2009-11-05 14:34:07 cg Exp $'
 ! !