ImmutableArray.st
author Claus Gittinger <cg@exept.de>
Mon, 27 Feb 2012 20:44:21 +0100
changeset 14023 a61f74fd04c9
parent 12538 e6bf8c42e1d4
child 14113 367fab89c469
permissions -rw-r--r--
moved: #noModificationError
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     1
"
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     3
	      All Rights Reserved
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     4
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
0c35c797ac6c Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    11
"
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    12
"{ Package: 'stx:libbasic' }"
5798
a8485d80886b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
    13
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 3715
diff changeset
    14
Array variableSubclass:#ImmutableArray
1284
c3829892852b commentary
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
    15
	instanceVariableNames:''
c3829892852b commentary
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
    16
	classVariableNames:''
c3829892852b commentary
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
    17
	poolDictionaries:''
c3829892852b commentary
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
    18
	category:'System-Compiler-Support'
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    19
!
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    20
2697
fc8552cd6ebf added node-walk facility (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
    21
!ImmutableArray class methodsFor:'documentation'!
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    22
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    23
copyright
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    24
"
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    25
 COPYRIGHT (c) 1995 by Claus Gittinger
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    26
	      All Rights Reserved
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    27
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    28
 This software is furnished under a license and may be used
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    33
 hereby transferred.
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    34
"
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    35
!
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    36
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    37
documentation
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    38
"
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    39
    By default, array literals in smalltalk are mutable objects. That
364
claus
parents: 361
diff changeset
    40
    may lead to some subtle (and hard to find errors), if some method passes
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    41
    a literal array constant as argument to someone else, who changes the
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    42
    array using at:put: like messages. Since the array object is kept in
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    43
    the first methods literals, the array constant has now been changed without
12463
6b3a71aad451 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12455
diff changeset
    44
    having the method's sourcecode reflect this. Thus, the method will
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    45
    behave differently from what its source may make you think.
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    46
364
claus
parents: 361
diff changeset
    47
    To help finding this kind of 'feature/bug', the compiler can be
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    48
    configured to create instances of this ImmutableArray instead of Arrays
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    49
    for array literals. Instances of ImmutableArray catch storing accesses and
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    50
    enter the debugger. Although useful, this feature is disabled by default
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    51
    for compatibility to other smalltalk implementations.
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    52
    (Also, if turned on, this makes inspecting array literals entered in
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    53
     a workspace somewhat strange: you cannot modify it any longer).
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    54
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    55
    Turn the ImmutableArray feature on by setting the Parsers class variable
364
claus
parents: 361
diff changeset
    56
    'ArraysAreImmutable' to true or use the new launchers settings menu.
1296
41f533f705cd documentation
Claus Gittinger <cg@exept.de>
parents: 1284
diff changeset
    57
12470
f666ff3600cf added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12463
diff changeset
    58
f666ff3600cf added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12463
diff changeset
    59
    ATTENTION:
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    60
	there may be still code around which checks for explicit class being Array
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    61
	(both in Smalltalk and in primitive code). All code like foo 'class == Array'
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    62
	or '__isArray' will not work with ImmutableArrays.
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    63
	A somewhat better approach would be to either add a flag to the object (mutability)
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    64
	and check this dynamically (expensive) or to place immutable objects into a readonly
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    65
	memory segment (the good solution). We will eventually implement the second in the future...
12470
f666ff3600cf added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12463
diff changeset
    66
3715
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    67
    [see also:]
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    68
	ImmutableString
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    69
	Parser Scanner
3715
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    70
1296
41f533f705cd documentation
Claus Gittinger <cg@exept.de>
parents: 1284
diff changeset
    71
    [author:]
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    72
	Claus Gittinger
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
    73
"
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    74
! !
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    75
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    76
!ImmutableArray methodsFor:'accessing'!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    77
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    78
at:index put:value
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    79
    "Trigger an error if an immutable array is stored into.
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    80
     The store will be performed (for compatibility reasons) if you continue
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    81
     in the debugger."
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    82
12492
d63fd473f6e7 Raise NoModificationError
Stefan Vogel <sv@exept.de>
parents: 12470
diff changeset
    83
    self noModificationError.
3715
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    84
    ^ super at:index put:value
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    85
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    86
    "Modified: / 3.8.1998 / 14:45:23 / cg"
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    87
!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    88
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    89
basicAt:index put:value
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    90
    "Trigger an error if an immutable array is stored into.
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    91
     The store will be performed (for compatibility reasons) if you continue
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    92
     in the debugger."
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
    93
12492
d63fd473f6e7 Raise NoModificationError
Stefan Vogel <sv@exept.de>
parents: 12470
diff changeset
    94
    self noModificationError.
3715
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    95
    ^ super basicAt:index put:value
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    96
bdb80b8199fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2697
diff changeset
    97
    "Modified: / 3.8.1998 / 14:45:30 / cg"
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    98
! !
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
    99
12455
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   100
!ImmutableArray methodsFor:'converting'!
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   101
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   102
asImmutableArray
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   103
    ^ self
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   104
! !
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   105
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   106
!ImmutableArray methodsFor:'copying'!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   107
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   108
copyEmpty
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   109
    "when copying, return a real (mutable) Array"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   110
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   111
    ^ Array new:self size
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   112
!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   113
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   114
copyEmptyAndGrow:size
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   115
    "when copying, return a real (mutable) Array"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   116
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   117
    ^ Array new:size
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   118
!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   119
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   120
postCopy
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   121
    "when copied, make it me a real (mutable) Array"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   122
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   123
    self changeClassTo:Array.
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   124
!
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   125
8931
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   126
postDeepCopy
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   127
    "when copied, make it me a real (mutable) Array"
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   128
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   129
    self changeClassTo:Array.
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   130
!
10da5e5ddb8e +postDeepCopy
Claus Gittinger <cg@exept.de>
parents: 8807
diff changeset
   131
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   132
shallowCopy
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   133
    "when copying, return a real (mutable) Array"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   134
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   135
    |sz|
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   136
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   137
    sz := self size.
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   138
    ^ (Array new:sz)
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   139
	replaceFrom:1 to:sz with:self startingAt:1
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   140
! !
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   141
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   142
!ImmutableArray methodsFor:'private'!
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   143
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   144
species
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   145
    "Copies should be mutable"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   146
6550
adb966d9afc9 comment
Claus Gittinger <cg@exept.de>
parents: 5798
diff changeset
   147
    ^ Array
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   148
! !
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   149
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   150
!ImmutableArray methodsFor:'queries'!
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   151
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   152
isLiteral
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 3715
diff changeset
   153
    "return true, if the receiver can be used as a literal constant in ST syntax
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   154
     (i.e. can be used in constant arrays)"
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   155
619
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   156
    "yes, I must be"
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   157
    ^ true
95efb21c1fac checkin from browser
Claus Gittinger <cg@exept.de>
parents: 531
diff changeset
   158
274
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   159
! !
0c35c797ac6c Initial revision
claus
parents:
diff changeset
   160
361
claus
parents: 330
diff changeset
   161
!ImmutableArray methodsFor:'specials'!
claus
parents: 330
diff changeset
   162
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
   163
become:anotherObject
371
claus
parents: 364
diff changeset
   164
    "trigger an error if I should become something else
claus
parents: 364
diff changeset
   165
     (this would be an even more tricky manipulation)"
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
   166
12492
d63fd473f6e7 Raise NoModificationError
Stefan Vogel <sv@exept.de>
parents: 12470
diff changeset
   167
    self noModificationError.
361
claus
parents: 330
diff changeset
   168
    ^ super become:anotherObject
claus
parents: 330
diff changeset
   169
!
claus
parents: 330
diff changeset
   170
claus
parents: 330
diff changeset
   171
becomeNil
371
claus
parents: 364
diff changeset
   172
    "trigger an error if I should become nil
claus
parents: 364
diff changeset
   173
     (this would be an even more tricky manipulation)"
12538
e6bf8c42e1d4 Moved to libbasic from libcomp - change package name
Stefan Vogel <sv@exept.de>
parents: 12492
diff changeset
   174
12492
d63fd473f6e7 Raise NoModificationError
Stefan Vogel <sv@exept.de>
parents: 12470
diff changeset
   175
    self noModificationError.
361
claus
parents: 330
diff changeset
   176
    ^ super becomeNil
claus
parents: 330
diff changeset
   177
! !
claus
parents: 330
diff changeset
   178
2697
fc8552cd6ebf added node-walk facility (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
   179
!ImmutableArray class methodsFor:'documentation'!
660
7a512a3ddd08 version method at the end
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
   180
7a512a3ddd08 version method at the end
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
   181
version
14023
a61f74fd04c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 12538
diff changeset
   182
    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.29 2012-02-27 19:44:21 cg Exp $'
12455
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   183
!
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   184
d34abbe4c841 added: #asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 9237
diff changeset
   185
version_CVS
14023
a61f74fd04c9 moved: #noModificationError
Claus Gittinger <cg@exept.de>
parents: 12538
diff changeset
   186
    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.29 2012-02-27 19:44:21 cg Exp $'
660
7a512a3ddd08 version method at the end
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
   187
! !