BContext.st
author Claus Gittinger <cg@exept.de>
Sun, 02 Nov 1997 20:14:50 +0100
changeset 3089 0823aa17ac4d
parent 2157 436ad20004f4
child 3324 0295f7b3b208
permissions -rw-r--r--
checkin from browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
Context subclass:#BlockContext
1183
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    14
	instanceVariableNames:''
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    15
	classVariableNames:''
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    16
	poolDictionaries:''
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
    17
	category:'Kernel-Methods'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
88
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    20
!BlockContext class methodsFor:'documentation'!
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    21
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    22
copyright
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    23
"
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
    25
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
88
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    27
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    28
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    30
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    31
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    32
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    33
"
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    34
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    35
88
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    36
documentation
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    37
"
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    38
    BlockContexts represent the stack context objects of blocks. 
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    39
    The layout is the same as for other contexts - this class has been added 
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    40
    to avoid a flag in an instance variable.
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    41
    (has become necessary with cheap blocks, which have no home).
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    42
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    43
    WARNING: layout and size known by compiler and runtime system - 
1293
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    44
             do not change.
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    45
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    46
    [author:]
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    47
        Claus Gittinger
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    48
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    49
    [see also:]
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    50
        Context Block Method
02fb05148c98 documentation
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
    51
        Exception Signal
88
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    52
"
81dacba7a63a *** empty log message ***
claus
parents: 68
diff changeset
    53
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    54
a27a279701f8 Initial revision
claus
parents:
diff changeset
    55
!BlockContext methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    56
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    57
canReturn
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    58
    "return true, if the receiver allows returning through it.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    59
     For normal method contexts, this normally returns true;
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    60
     for blocks, it (currently) always returns false."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    61
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    62
    ^ false
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    63
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    64
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    65
home
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    66
    "return the immediate home of the receiver.
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    67
     normally this is the methodcontext, where the block was created,
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    68
     for nested block contexts, this is the surrounding blocks context."
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    69
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    70
    home isContext ifFalse:[^ nil]. "copying blocks have no home"
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    71
    ^ home
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    72
!
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    73
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    74
isBlockContext
a27a279701f8 Initial revision
claus
parents:
diff changeset
    75
    "return true, iff the receiver is a BlockContext, false otherwise"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    76
a27a279701f8 Initial revision
claus
parents:
diff changeset
    77
    ^ true
a27a279701f8 Initial revision
claus
parents:
diff changeset
    78
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    79
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    80
method
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    81
    "return the method in which the current contexts block was created."
360
claus
parents: 357
diff changeset
    82
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    83
    home notNil ifTrue:[^ home method].
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
    84
    ^ nil
360
claus
parents: 357
diff changeset
    85
!
claus
parents: 357
diff changeset
    86
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
methodHome
a27a279701f8 Initial revision
claus
parents:
diff changeset
    88
    "return the method-home for block contexts"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    89
a27a279701f8 Initial revision
claus
parents:
diff changeset
    90
    |con h|
a27a279701f8 Initial revision
claus
parents:
diff changeset
    91
a27a279701f8 Initial revision
claus
parents:
diff changeset
    92
    home isNil ifTrue:[^ nil]. "XXX will change soon"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    93
    home isContext ifFalse:[^ nil]. "copying blocks have no method home"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    94
a27a279701f8 Initial revision
claus
parents:
diff changeset
    95
    con := self.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    96
    h := home.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    97
    [h notNil] whileTrue:[
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
    98
	con := h.
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
    99
	h := con home
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   100
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   101
    ^ con
a27a279701f8 Initial revision
claus
parents:
diff changeset
   102
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   103
a27a279701f8 Initial revision
claus
parents:
diff changeset
   104
selector
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
    "return the selector of the context - which is one of the value
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   106
     selectors. This selector is not found in the context, but synthesized."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   107
a27a279701f8 Initial revision
claus
parents:
diff changeset
   108
    |nargs|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   109
154
d4236ec280a6 *** empty log message ***
claus
parents: 92
diff changeset
   110
    nargs := self numArgs.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   111
    (nargs == 0) ifTrue:[^ #value].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   112
    (nargs == 1) ifTrue:[^ #value:].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   113
    (nargs == 2) ifTrue:[^ #value:value:].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   114
    (nargs == 3) ifTrue:[^ #value:value:value:].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   115
    (nargs == 4) ifTrue:[^ #value:value:value:value:].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   116
    (nargs == 5) ifTrue:[^ #value:value:value:value:value:].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   117
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
   118
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   119
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   120
!BlockContext methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   121
a27a279701f8 Initial revision
claus
parents:
diff changeset
   122
receiverPrintString
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   123
    "return a printString describing the contexts receiver.
357
claus
parents: 293
diff changeset
   124
claus
parents: 293
diff changeset
   125
     Since this is also used by the debugger(s), be very careful to
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   126
     return something useful, even in case internals of the system
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   127
     got corrupted ... (i.e. avoid messageNotUnderstood here)"
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   128
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   129
    |cls who mHome m className sel 
2157
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   130
     sender selSender tryVars possibleBlocks method mWho
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   131
     homeSel|
357
claus
parents: 293
diff changeset
   132
claus
parents: 293
diff changeset
   133
    (home isNil or:[home isContext not]) ifTrue:[
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   134
        "
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   135
         mhmh - an optimized blocks context
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   136
         should get the block here, and get the method from
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   137
         that one ...
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   138
         ... but in 2.x, there is no easy way to get to the block
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   139
         since that one is not in the context.
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   140
         Starting with 3.x, the new block calling scheme will fix this.
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   141
        "
241
6f30be88e314 *** empty log message ***
claus
parents: 216
diff changeset
   142
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   143
        "temporary kludge - peek into the sender context.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   144
         If its a do-like method and there is a single block variable 
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   145
         in the args or temporaries, that must be the one.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   146
         This helps in some cases.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   147
        "
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   148
        (sender := self sender) notNil ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   149
            tryVars := false.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   150
            (selSender := sender selector) notNil ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   151
                (selSender endsWith:'do:') ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   152
                    tryVars := true.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   153
                ] ifFalse:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   154
                    (selSender endsWith:'Do:') ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   155
                        tryVars := true.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   156
                    ]
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   157
                ]
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   158
            ].
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   159
            tryVars ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   160
                possibleBlocks := sender argsAndVars select:[:v | v isBlock].
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   161
                possibleBlocks := possibleBlocks select:[:b | b home isNil].
357
claus
parents: 293
diff changeset
   162
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   163
                possibleBlocks size == 1 ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   164
                    method := possibleBlocks first method.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   165
                    "
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   166
                     change the line in the upper-listview
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   167
                     according the information we have now
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   168
                    "
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   169
                    mWho := method who.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   170
                    mWho isNil ifTrue:[
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   171
                        ^ '[] (optimized) in ???'.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   172
                    ].
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   173
                    ^ '[] (optimized) in ' , 
1990
210d9bf1e6b4 3.1.3 patch selector -> methodSelector
Claus Gittinger <cg@exept.de>
parents: 1852
diff changeset
   174
                      mWho methodClass name , '-' , mWho methodSelector.
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   175
                ].
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   176
            ]
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   177
        ].
357
claus
parents: 293
diff changeset
   178
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   179
        ^ '[] (optimized)'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   180
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   181
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   182
    mHome := self methodHome.
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   183
    mHome isNil ifTrue:[
2128
7201897ff4db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
   184
        'BlockContext [warning]: no methodHome' errorPrintCR.
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   185
        ^ '[] in ???'
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   186
    ].
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   187
293
31df3850e98c *** empty log message ***
claus
parents: 281
diff changeset
   188
    "
31df3850e98c *** empty log message ***
claus
parents: 281
diff changeset
   189
     kludge to avoid slow search for containing class
31df3850e98c *** empty log message ***
claus
parents: 281
diff changeset
   190
    "
2157
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   191
    ((homeSel := mHome selector) == #doIt
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   192
    or:[homeSel == #doIt:]) ifTrue:[
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   193
        sel := #doIt.
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   194
        cls := mHome receiver class.
293
31df3850e98c *** empty log message ***
claus
parents: 281
diff changeset
   195
    ] ifFalse:[
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   196
        m := mHome method.
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   197
        m isNil ifTrue:[
2128
7201897ff4db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
   198
            'BlockContext [warning]: no method' errorPrintCR.
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   199
            ^ '[] in ???'
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   200
        ].
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   201
        who := m who.
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   202
        who notNil ifTrue:[
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   203
            cls := who methodClass
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   204
        ] ifFalse:[
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   205
            cls := receiver class.
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   206
        ].
2157
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   207
        sel := homeSel printString.
241
6f30be88e314 *** empty log message ***
claus
parents: 216
diff changeset
   208
    ].
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   209
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   210
    cls isNil ifTrue:[
2128
7201897ff4db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
   211
        'BlockContext [warning]: no home class' errorPrintCR.
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   212
        className := '???'
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   213
    ] ifFalse:[
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   214
        className := cls name.
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   215
        className isNil ifTrue:[
2128
7201897ff4db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
   216
            'BlockContext [warning]: nameless class' errorPrintCR.
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   217
            className := '???'
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   218
        ]
281
d63a7d2c31a6 *** empty log message ***
claus
parents: 241
diff changeset
   219
    ].
1852
89b2328f4203 use new Method>>who interface
Claus Gittinger <cg@exept.de>
parents: 1444
diff changeset
   220
    ^ '[] in ' , className , '-' , sel
1444
cb2493aa4d0c fixed homeless-optimized-block printString
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
   221
2157
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   222
    "Modified: 10.1.1997 / 21:26:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   223
! !
623
6795a71e39d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   224
1183
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   225
!BlockContext class methodsFor:'documentation'!
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   226
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   227
version
2157
436ad20004f4 prepare for #doIt: (with context)
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   228
    ^ '$Header: /cvs/stx/stx/libbasic/Attic/BContext.st,v 1.26 1997-01-11 22:58:58 cg Exp $'
1183
e3d58d115e53 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   229
! !