checkin from browser
authorClaus Gittinger <cg@exept.de>
Mon, 03 Aug 1998 19:09:19 +0200
changeset 754 1363fa7dfcd1
parent 753 62c045f53129
child 755 49ae81e86b7b
checkin from browser
ImmArray.st
ImmutableArray.st
--- a/ImmArray.st	Mon Aug 03 19:08:28 1998 +0200
+++ b/ImmArray.st	Mon Aug 03 19:09:19 1998 +0200
@@ -54,6 +54,10 @@
     Turn the ImmutableArray feature on by setting the Parsers class variable
     'ArraysAreImmutable' to true or use the new launchers settings menu.
 
+    [see also:]
+        ImmutableString
+        Parser Scanner
+
     [author:]
         Claus Gittinger
 "
@@ -61,22 +65,26 @@
 
 !ImmutableArray methodsFor:'accessing'!
 
-at: index put: value
+at:index put:value
     "Trigger an error if an immutable array is stored into.
      The store will be performed (for compatibility reasons) if you continue
      in the debugger."
 
     self notifyStoreError.
-    ^ super at: index put: value
+    ^ super at:index put:value
+
+    "Modified: / 3.8.1998 / 14:45:23 / cg"
 !
 
-basicAt: index put: value
+basicAt:index put:value
     "Trigger an error if an immutable array is stored into.
      The store will be performed (for compatibility reasons) if you continue
      in the debugger."
 
     self notifyStoreError.
-    ^ super basicAt: index put: value
+    ^ super basicAt:index put:value
+
+    "Modified: / 3.8.1998 / 14:45:30 / cg"
 ! !
 
 !ImmutableArray methodsFor:'copying'!
@@ -189,5 +197,5 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmArray.st,v 1.16 1997-06-19 14:57:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmArray.st,v 1.17 1998-08-03 17:09:19 cg Exp $'
 ! !
--- a/ImmutableArray.st	Mon Aug 03 19:08:28 1998 +0200
+++ b/ImmutableArray.st	Mon Aug 03 19:09:19 1998 +0200
@@ -54,6 +54,10 @@
     Turn the ImmutableArray feature on by setting the Parsers class variable
     'ArraysAreImmutable' to true or use the new launchers settings menu.
 
+    [see also:]
+        ImmutableString
+        Parser Scanner
+
     [author:]
         Claus Gittinger
 "
@@ -61,22 +65,26 @@
 
 !ImmutableArray methodsFor:'accessing'!
 
-at: index put: value
+at:index put:value
     "Trigger an error if an immutable array is stored into.
      The store will be performed (for compatibility reasons) if you continue
      in the debugger."
 
     self notifyStoreError.
-    ^ super at: index put: value
+    ^ super at:index put:value
+
+    "Modified: / 3.8.1998 / 14:45:23 / cg"
 !
 
-basicAt: index put: value
+basicAt:index put:value
     "Trigger an error if an immutable array is stored into.
      The store will be performed (for compatibility reasons) if you continue
      in the debugger."
 
     self notifyStoreError.
-    ^ super basicAt: index put: value
+    ^ super basicAt:index put:value
+
+    "Modified: / 3.8.1998 / 14:45:30 / cg"
 ! !
 
 !ImmutableArray methodsFor:'copying'!
@@ -189,5 +197,5 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.16 1997-06-19 14:57:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.17 1998-08-03 17:09:19 cg Exp $'
 ! !