ImmutableString.st
author Claus Gittinger <cg@exept.de>
Sun, 27 Apr 2003 17:40:18 +0200
changeset 7241 06359d192b65
parent 3714 62524619bfb7
child 8807 606a4ec5b693
permissions -rw-r--r--
comment
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3714
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1998 by eXept Software AG
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
String subclass:#ImmutableString
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Compiler-Support'
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!ImmutableString class methodsFor:'documentation'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 1998 by eXept Software AG
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    By default, string literals in smalltalk are mutable objects. That
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    may lead to some subtle (and hard to find errors), if some method passes
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    a string constant as argument to someone else, who changes the
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    string using at:put: like messages. Since the string object is kept in 
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    the first methods literals, the string constant has now been changed without
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    having the methods sourcecode reflect this. Thus, the method will
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    behave differently from what its source may make you think.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    To help finding this kind of 'feature/bug', the compiler can be
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    configured to create instances of this ImmutableString instead of Strings
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    for string literals. Instances of ImmutableString catch storing accesses and
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    enter the debugger. Although useful, this feature is disabled by default
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    for compatibility to other smalltalk implementations. 
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    (Also, if turned on, this makes inspecting string literals entered in
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
     a workspace somewhat strange: you cannot modify it any longer).
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    Turn the ImmutableString feature on by setting the Parsers class variable
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    'StringsAreImmutable' to true or use the new launchers settings menu.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    [see also:]
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
        ImmutableArray
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
        Parser Scanner
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    [author:]
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
        Claus Gittinger
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!ImmutableString methodsFor:'accessing'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
at:index put:value
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    "Trigger an error if an immutable string is stored into.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
     The store will be performed (for compatibility reasons) if you continue
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
     in the debugger."
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    self notifyStoreError.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    ^ super at:index put:value
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
    "Created: / 3.8.1998 / 14:45:14 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
!ImmutableString methodsFor:'copying'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
copyEmpty
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
    "when copying, return a real (mutable) String"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
    ^ String new:self size
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
    "Created: / 3.8.1998 / 14:46:22 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
copyEmptyAndGrow:size
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    "when copying, return a real (mutable) String"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
    ^ String new:size
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
    "Created: / 3.8.1998 / 14:46:34 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
postCopy
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    "when copied, make it me a real (mutable) String"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    self changeClassTo:String.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
    "Created: / 3.8.1998 / 14:46:45 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
shallowCopy
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
    "when copying, return a real (mutable) String"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
    |sz|
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    sz := self size.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
    ^ (String new:sz) replaceFrom:1 to:sz with:self startingAt:1
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
    "Created: / 3.8.1998 / 14:47:00 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
!ImmutableString methodsFor:'error handling'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
creator 
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
    "find the method that contains me"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
    Method allSubInstances do:[:aMethod |
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
        (aMethod referencesGlobal:self) ifTrue:[
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
            ^ aMethod.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
        ].
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    ].
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    ^ nil
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
    " 
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
      'hello' creator
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    "
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    "Created: / 3.8.1998 / 14:47:19 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
notifyStoreError
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    "a store is attempted - for our convenience, find the method that
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
     contains me, for a nicer error message"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
    |creator msg|
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    creator := self creator.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
    msg := 'store into/change of literal'.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
    creator notNil ifTrue:[
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
        msg := msg , ' (' , creator whoString , ')'
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
    ].
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    "
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
     this error is reported on an attempt to store into a literal
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
     string. The literal was created in creator.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
     If you press continue in the debugger, the store will be performed.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
     If you dont want this, press abort and check your code.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
     Storing into literals is VERY VERY bad coding style.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
    "
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    self error:msg
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
    "Created: / 3.8.1998 / 14:47:45 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
!ImmutableString methodsFor:'private'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
species
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
    "Copies should be mutable"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
    ^ String
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
    "Created: / 3.8.1998 / 14:47:58 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
!ImmutableString methodsFor:'queries'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
isLiteral
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    "return true, if the receiver can be used as a literal
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
     (i.e. can be used in constant strings)"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
    "yes, I must be"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
    ^ true
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
    "Created: / 3.8.1998 / 14:48:13 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
!ImmutableString methodsFor:'specials'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
become:anotherObject
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
    "trigger an error if I should become something else
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
     (this would be an even more tricky manipulation)"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
    self notifyStoreError.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
    ^ super become:anotherObject
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
    "Created: / 3.8.1998 / 14:48:29 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
becomeNil
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
    "trigger an error if I should become nil
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
     (this would be an even more tricky manipulation)"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
    self notifyStoreError.
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
    ^ super becomeNil
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
    "Created: / 3.8.1998 / 14:48:37 / cg"
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
! !
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
!ImmutableString class methodsFor:'documentation'!
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
version
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableString.st,v 1.1 1998-08-03 17:08:28 cg Exp $'
62524619bfb7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
! !