ImmutableArray.st
changeset 148 ef0e604209ec
parent 140 1ef1d1395146
child 261 0372e948ca2d
equal deleted inserted replaced
147:9de6bea67dbf 148:ef0e604209ec
    52      a workspace somewhat strange: you cannot modify it any longer).
    52      a workspace somewhat strange: you cannot modify it any longer).
    53 
    53 
    54     Turn the ImmutableArray feature on by setting the Parsers class variable
    54     Turn the ImmutableArray feature on by setting the Parsers class variable
    55     'ArraysAreImmutable' to true or use the new launchers settings menu.
    55     'ArraysAreImmutable' to true or use the new launchers settings menu.
    56 "
    56 "
    57 !
       
    58 
       
    59 version
       
    60     ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.11 1995-11-23 02:13:03 cg Exp $'
       
    61 ! !
    57 ! !
    62 
    58 
    63 !ImmutableArray methodsFor:'accessing'!
    59 !ImmutableArray methodsFor:'accessing'!
    64 
    60 
    65 at: index put: value
    61 at: index put: value
   182 
   178 
   183     self notifyStoreError.
   179     self notifyStoreError.
   184     ^ super becomeNil
   180     ^ super becomeNil
   185 ! !
   181 ! !
   186 
   182 
       
   183 !ImmutableArray class methodsFor:'documentation'!
       
   184 
       
   185 version
       
   186     ^ '$Header: /cvs/stx/stx/libcomp/Attic/ImmutableArray.st,v 1.12 1995-12-03 12:15:31 cg Exp $'
       
   187 ! !