ImmutableArray.st
changeset 8931 10da5e5ddb8e
parent 8807 606a4ec5b693
child 9237 86e0ef73d524
--- a/ImmutableArray.st	Tue Jul 12 15:57:22 2005 +0200
+++ b/ImmutableArray.st	Tue Jul 12 15:58:14 2005 +0200
@@ -109,6 +109,12 @@
     self changeClassTo:Array.
 !
 
+postDeepCopy
+    "when copied, make it me a real (mutable) Array"
+
+    self changeClassTo:Array.
+!
+
 shallowCopy
     "when copying, return a real (mutable) Array"
 
@@ -199,5 +205,5 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.21 2005-03-29 23:08:18 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.22 2005-07-12 13:57:44 cg Exp $'
 ! !