Explainer.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Jun 2000 19:52:51 +0200
changeset 1045 ee448a958d19
parent 913 bd05fb9dbc9a
child 1081 6e6255672d68
permissions -rw-r--r--
migration support
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     1
"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
     3
	      All Rights Reserved
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     4
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    11
"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    12
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    13
Parser subclass:#Explainer
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    14
	instanceVariableNames:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    15
	classVariableNames:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    16
	poolDictionaries:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    17
	category:'System-Compiler'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    18
!
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    19
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    20
!Explainer class methodsFor:'documentation'!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    21
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    22
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    23
"
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    25
	      All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    26
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    27
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    28
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    30
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    31
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    32
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    33
"
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    34
!
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    35
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    36
documentation
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    37
"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    38
    a very simple explainer - much more should be added ...
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    39
    This one is involved, when the 'explain' function is used in a 
84
claus
parents: 58
diff changeset
    40
    codeView (popup or via CMD-E).
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    41
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    42
    [author:]
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    43
        Claus Gittinger
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    44
"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    45
! !
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    46
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    47
!Explainer class methodsFor:'explaining'!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    48
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    49
commonSuperClassOf:listOfClassNames
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    50
    |common found|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    51
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    52
    listOfClassNames do:[:className |
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    53
        |class|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    54
336
b99c14f17afc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 290
diff changeset
    55
        class := Smalltalk classNamed:className.
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    56
        common isNil ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    57
            common := class
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    58
        ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    59
            (class isSubclassOf:common) ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    60
                "keep common"
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    61
            ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    62
                (common isSubclassOf:class) ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    63
                    common := class
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    64
                ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    65
                    "walk up, checking"
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    66
                    found := false.
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    67
                    common allSuperclassesDo:[:sup |
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    68
                        (class isSubclassOf:sup) ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    69
                            common := sup
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    70
                        ]
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    71
                    ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    72
                    found ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    73
                        class allSuperclassesDo:[:sup |
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    74
                            (common isSubclassOf:sup) ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    75
                                common := sup
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    76
                            ]
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    77
                        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    78
                    ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    79
                ]
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    80
            ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    81
        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    82
        common == Object ifTrue:[^ common]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    83
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    84
    ^ common
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    85
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    86
    "Modified: 17.6.1996 / 17:09:21 / stefan"
336
b99c14f17afc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 290
diff changeset
    87
    "Modified: 5.9.1996 / 19:34:41 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    88
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    89
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    90
explain:someText in:source forClass:aClass
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
    91
    "Given a source and a substring of it, return a string containing
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
    92
     an explanation.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    93
     This is just a q&d implementation - to be correct, it should use the parser,
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    94
     and explain from the parsetree (instead of doing string matches).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    95
     This leads to some wrong explanations, for example if some string is
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    96
     used as selector within a string, or if a variable is named like a
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    97
     message selector. I.e. the explanation should be context sensitive.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    98
     Also, there could be much more detailed explanations."
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    99
693
f8a474713980 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   100
    |parser variables v c string tmp
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   101
     spc sym sel stringText|
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   102
675
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   103
    string := someText string withoutSeparators.
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   104
    stringText := string asText allBold.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   105
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   106
    "
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   107
     ask parser for variable names
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   108
    "
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   109
    parser := self parseMethod:source in:aClass ignoreErrors:true ignoreWarnings:true.
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   110
    parser notNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   111
        "look for variables"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   112
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   113
        variables := parser methodVars.
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   114
        (variables notNil and:[variables includes:string]) ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   115
            ^ '''' , stringText , ''' is a method variable'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   116
        ].
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   117
        variables := parser methodArgs.
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   118
        (variables notNil and:[variables includes:string]) ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   119
            ^ '''' , stringText , ''' is a method argument'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   120
        ]
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   121
    ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   122
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   123
    parser isNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   124
        parser := self for:(ReadStream on:source) in:aClass
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   125
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   126
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   127
    "instvars"
84
claus
parents: 58
diff changeset
   128
    c := aClass whichClassDefinesInstVar:string.
claus
parents: 58
diff changeset
   129
    c notNil ifTrue:[
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   130
        c isMeta ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   131
            ^ '''' , stringText , ''' is a class instance variable in ' , c soleInstance name
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   132
        ].
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   133
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   134
        ^ '''' , stringText , ''' is an instance variable in ' , c name
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   135
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   136
84
claus
parents: 58
diff changeset
   137
"/    variables := aClass allInstVarNames.
claus
parents: 58
diff changeset
   138
"/    (variables notNil and:[variables includes:string]) ifTrue:[
claus
parents: 58
diff changeset
   139
"/        "where is it"
claus
parents: 58
diff changeset
   140
"/        c := aClass.
claus
parents: 58
diff changeset
   141
"/        [c notNil] whileTrue:[
claus
parents: 58
diff changeset
   142
"/            v := c instVarNames.
claus
parents: 58
diff changeset
   143
"/            (v notNil and:[v includes:string]) ifTrue:[
claus
parents: 58
diff changeset
   144
"/                ^ string , ' is an instance variable in ' , c name
claus
parents: 58
diff changeset
   145
"/            ].
claus
parents: 58
diff changeset
   146
"/            c := c superclass
claus
parents: 58
diff changeset
   147
"/        ].
claus
parents: 58
diff changeset
   148
"/        self error:'oops'
claus
parents: 58
diff changeset
   149
"/    ].
claus
parents: 58
diff changeset
   150
442
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   151
"/    "class instvars"
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   152
"/    variables := aClass class allInstVarNames.
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   153
"/    (variables notNil and:[variables includes:string]) ifTrue:[
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   154
"/        "where is it"
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   155
"/        c := aClass.
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   156
"/        [c notNil] whileTrue:[
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   157
"/            v := c class instVarNames.
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   158
"/            (v notNil and:[v includes:string]) ifTrue:[
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   159
"/                ^ string , ' is a class instance variable in ' , c name
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   160
"/            ].
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   161
"/            c := c superclass
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   162
"/        ].
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   163
"/        self error:'oops'
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   164
"/    ].
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   165
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   166
    "classvars"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   167
    c := parser inWhichClassIsClassVar:string.
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   168
    c notNil ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   169
        ^ '''' , stringText , ''' is a class variable in ' , c name
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   170
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   171
509
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   172
    aClass isMeta ifTrue:[
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   173
        c := aClass soleInstance.
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   174
    ] ifFalse:[
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   175
        c := aClass.
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   176
    ].
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   177
    c privateClasses do:[:pClass |
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   178
        (pClass name = string 
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   179
         or:[pClass nameWithoutPrefix = string]) ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   180
            ^ ('''' , stringText , ''' is a private class in ''' , c name , '''.'
422
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   181
                     , '\\It is only visible locally.') withCRs
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   182
        ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   183
    ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   184
456
abe32fed9c0d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 442
diff changeset
   185
    (spc := aClass nameSpace) notNil ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   186
        sym := (spc name , '::' , string) asSymbolIfInterned.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   187
        sym notNil ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   188
            (Smalltalk at:sym) isBehavior ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   189
                ^ ('''' , stringText , ''' is a class in the ''' , spc name , ''' nameSpace.'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   190
                         , '\\It is only visible within this nameSpace.'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   191
                         , '\Access from the outside is possible'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   192
                         , '\by the special name ''' , spc name , '::' , string , '''.') withCRs
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   193
            ].
422
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   194
        ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   195
    ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   196
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   197
"/    string knownAsSymbol ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   198
        "globals & symbols"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   199
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   200
        tmp := self explainKnownSymbol:string inClass:aClass.
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   201
        tmp notNil ifTrue:[ ^ tmp].
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   202
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   203
        "/ try with added colon ...
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   204
        sel := string , ':'.
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   205
        Symbol allInstancesDo:[:sym |
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   206
            (sym startsWith:sel) ifTrue:[
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   207
                tmp := self explainKnownSymbol:sym inClass:aClass.
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   208
                tmp notNil ifTrue:[ ^ tmp].
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   209
            ]
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   210
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   211
"/    ].
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   212
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   213
    "try for some obvious things"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   214
    tmp := self explainPseudoVariable:string in:aClass.
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   215
    tmp notNil ifTrue:[ ^ tmp].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   216
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   217
    "try syntax ..."
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   218
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   219
    tmp := self explainSyntax:string.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   220
    tmp notNil ifTrue:[ ^ tmp].
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
   221
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   222
    parser isNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   223
        ^ 'parse error - no explanation'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   224
    ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   225
    ^ 'cannot explain this (could not figure out what this is).'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   226
675
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   227
    "Created: / 3.12.1995 / 12:47:37 / cg"
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   228
    "Modified: / 16.4.1997 / 12:46:11 / stefan"
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   229
    "Modified: / 23.3.1999 / 13:29:56 / cg"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   230
!
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   231
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   232
explainHereIn:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   233
    ^ 'like self, here refers to the object which received the message.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   234
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   235
However, when sending a message to here the search for methods
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   236
implementing this message will start in the defining class (' , aClass name , ')
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   237
instead of the receivers class (' , aClass name , ' or subclass).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   238
Thus, using here, redefined methods will NOT be reached with a here-send.'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   239
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   240
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   241
explainKnownSymbol:string inClass:aClass
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   242
    "return explanation or nil"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   243
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   244
    |sym list count tmp commonSuperClass val s s2 
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   245
     firstImplementingClass cm msg|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   246
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   247
    sym := string asSymbolIfInterned.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   248
    sym isNil ifTrue:[^ nil].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   249
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   250
    "try globals"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   251
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   252
    (Smalltalk includesKey:sym) ifTrue:[
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   253
        tmp := '''' , string asText allBold , ''' is a global variable.'.
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   254
        val := Smalltalk at:sym.
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   255
        val isBehavior ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   256
            val name = string ifTrue:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   257
                tmp := tmp , '
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   258
503
b0d10f53a820 show 'autoloaded' for classes
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   259
' , string , ' is ' , (val isLoaded ifTrue:['a'] ifFalse:['an autoloaded'])
b0d10f53a820 show 'autoloaded' for classes
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   260
, ' class categorized as ' , val category , '
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   261
in the ''' , val package , ''' package.'
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   262
            ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   263
                tmp := tmp , '
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   264
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   265
' , string , ' is bound to the class ' , val name ,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   266
' in category ' , val category , '.'
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   267
            ]
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   268
        ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   269
            tmp := tmp , '
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   270
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   271
Its current value is ' , val classNameWithArticle , '.'
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   272
        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   273
        ^ tmp.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   274
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   275
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   276
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   277
     try selectors
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   278
     look who implements it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   279
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   280
    list := Set new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   281
    Smalltalk allBehaviorsDo:[:c|
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   282
        (c implements:sym) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   283
            list add:(c name).
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   284
            firstImplementingClass isNil ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   285
                firstImplementingClass := c
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   286
            ]
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   287
        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   288
        (c class implements:sym) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   289
            list add:(c name , ' class').
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   290
            firstImplementingClass isNil ifTrue:[
912
41eaf4909608 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   291
                firstImplementingClass := c class
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   292
            ]
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   293
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   294
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   295
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   296
    (aClass canUnderstand:sym) ifTrue:[
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   297
        s2 := ('\\Instances of ''' , aClass name , ''' respond to #') withCRs , sym asText allBold
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   298
              , '\- inherited from ' withCRs, (aClass whichClassImplements:sym) name asText allBold.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   299
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   300
        firstImplementingClass := (aClass whichClassImplements:sym)
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   301
    ] ifFalse:[
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   302
        s2 := ''.
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   303
    ].
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   304
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   305
    count := list size.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   306
    (count ~~ 0) ifTrue:[
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   307
        "
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   308
         for up-to 4 implementing classes,
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   309
         list them
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   310
        "
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   311
        list := list asOrderedCollection sort.
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   312
        tmp := ' is a selector implemented in '.
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   313
        s := '#' , string asText allBold.
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   314
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   315
        (count == 1) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   316
            msg := s , tmp , (list at:1) , '.' , s2.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   317
        ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   318
            (count == 2) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   319
                msg := s , tmp , (list at:1) , ' and ' , (list at:2) , '.' , s2
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   320
            ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   321
                (count == 3) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   322
                    msg := s , tmp , '
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   323
' , (list at:1) , ', ' , (list at:2) , ' and ' , (list at:3) , '.' , s2
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   324
                ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   325
                    (count == 4) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   326
                        msg := s , tmp , '
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   327
' , (list at:1) , ', ' , (list at:2) , ', ' , (list at:3), ' and ' , (list at:4) , '.' , s2
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   328
                    ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   329
                        "
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   330
                         if there are more, look for a common
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   331
                         superclass and show it ...
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   332
                        "
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   333
                        commonSuperClass := self commonSuperClassOf:list.
913
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   334
                        (commonSuperClass ~~ Object 
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   335
                        and:[commonSuperClass ~~ Behavior
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   336
                        and:[commonSuperClass ~~ Class
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   337
                        and:[commonSuperClass ~~ ClassDescription]]]) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   338
                            (list includes:commonSuperClass) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   339
                                msg := s . tmp , count printString , commonSuperClass name 
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   340
                                         , ' and redefined in ' , (count - 1) printString  
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   341
                                         , ' subclasses'
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   342
                                         , s2.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   343
                                firstImplementingClass := commonSuperClass
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   344
                            ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   345
                                msg := s , tmp, count printString , ' subclasses of ' , commonSuperClass name , s2
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   346
                            ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   347
                        ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   348
                            (commonSuperClass == Object
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   349
                            and:[commonSuperClass implements:sym]) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   350
                                msg := s , tmp , count printString , ' classes.
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   351
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   352
All objects seem to respond to that message, 
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   353
since there is an implementation in Object.' , s2.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   354
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   355
                                firstImplementingClass := Object
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   356
                            ] ifFalse:[
913
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   357
                                ((commonSuperClass == Behavior
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   358
                                 or:[commonSuperClass == Class
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   359
                                 or:[commonSuperClass == ClassDescription]])
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   360
                                and:[commonSuperClass implements:sym]) ifTrue:[
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   361
                                    msg := s , tmp , count printString , ' classes.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   362
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   363
All classes seem to respond to that message, 
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   364
since there is an implementation in ' , commonSuperClass name , '.' , s2.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   365
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   366
                                    firstImplementingClass := commonSuperClass
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   367
                                ] ifFalse:[
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   368
                                    "
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   369
                                     otherwise just give the number.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   370
                                    "
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   371
                                    msg := s , tmp , count printString , ' classes.' , s2
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   372
                                ]
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   373
                            ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   374
                        ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   375
                    ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   376
                ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   377
            ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   378
        ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   379
        firstImplementingClass notNil ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   380
            WindowGroup activeGroup withWaitCursorDo:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   381
                cm := firstImplementingClass compiledMethodAt:sym.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   382
                cm notNil ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   383
                    cm := cm methodComment.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   384
                ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   385
            ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   386
            cm notNil ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   387
                msg := msg , '\\The comment in ' withCRs , firstImplementingClass name asText allBold , ' is:\' withCRs , cm asText allItalic.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   388
            ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   389
        ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   390
        ^ msg
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   391
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   392
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   393
    ^ nil
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   394
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   395
    "Modified: / 17.6.1996 / 17:09:30 / stefan"
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   396
    "Created: / 23.3.1999 / 13:29:33 / cg"
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   397
    "Modified: / 23.3.1999 / 13:40:40 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   398
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   399
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   400
explainPseudoVariable:string in:aClass
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   401
    "return explanation for the pseudoVariables self, super etc."
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   402
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   403
    (string = 'self') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   404
	^ self explainSelfIn:aClass
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   405
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   406
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   407
    (string = 'super') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   408
	^ self explainSuperIn:aClass
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   409
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   410
84
claus
parents: 58
diff changeset
   411
    (string = 'here') ifTrue:[
claus
parents: 58
diff changeset
   412
	^ self explainHereIn:aClass
claus
parents: 58
diff changeset
   413
    ].
claus
parents: 58
diff changeset
   414
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   415
    (string = 'thisContext') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   416
	^ 'thisContext is a pseudo variable (i.e. it is built in).
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   417
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   418
ThisContext always refers to the context object for the currently executed method or
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   419
block (an instance of Context or BlockContext respectively). The calling chain and calling
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   420
receivers/selectors can be accessed via thisContext.'
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   421
    ].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   422
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   423
    (string = 'true') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   424
	^ 'true is a pseudo variable (i.e. it is built in).
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   425
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   426
True represents logical truth. It is the one and only instance of class True.'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   427
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   428
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   429
    (string = 'false') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   430
	^ 'false is a pseudo variable (i.e. it is built in).
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   431
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   432
False represents logical falseness. It is the one and only instance of class False.'
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   433
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   434
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   435
    (string = 'nil') ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   436
	^ 'nil is a pseudo variable (i.e. it is built in).
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   437
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   438
Nil is used for unitialized variables (among other uses).
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   439
Nil is the one and only instance of class UndefinedObject.'
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   440
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   441
    ^ nil
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   442
!
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   443
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   444
explainSelfIn:aClass
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   445
    |sub|
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   446
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   447
    sub := aClass allSubclasses collect:[:c | c name].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   448
    sub size == 0 ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   449
	^ 'self refers to the object which received the message.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   450
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   451
In this case, it will be an instance of ' , aClass name , '.'
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   452
    ].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   453
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   454
    sub size <= 5 ifTrue:[
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   455
	^ 'self refers to the object which received the message.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   456
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   457
In this case, it will be an instance of ' , aClass name , '
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   458
or one of its subclasses:
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   459
58
15b00d1236db asText eliminated
claus
parents: 54
diff changeset
   460
' , sub asStringCollection asString
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   461
    ].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   462
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   463
    ^ 'self refers to the object which received the message.
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   464
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   465
In this case, it will be an instance of ' , aClass name , '
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   466
or one of its ' , sub size printString , ' subclasses.'
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   467
!
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   468
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   469
explainSuperIn:aClass
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   470
    ^ 'like self, super refers to the object which received the message.
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   471
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   472
However, when sending a message to super the search for methods
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   473
implementing this message will start in the superclass (' , aClass superclass name , ')
84
claus
parents: 58
diff changeset
   474
instead of the receivers class (' , aClass name , ' or subclass).
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   475
Thus, using super, a redefined method can call the original method in its superclass.'
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   476
!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   477
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   478
explainSyntax:string
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   479
    "try syntax ...; return explanation or nil"
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   480
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   481
    ((string = ':=') or:[string = '_']) ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   482
        ^ '<variable> := <expression>
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   483
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   484
'':='' and ''_'' (which is left-arrow in some fonts) mean assignment.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   485
The variable is bound to (i.e. points to) the value of <expression>.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   486
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   487
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   488
    (string = '^') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   489
        ^ '^ <expression>
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   490
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   491
returns the value of <expression> as value from the method.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   492
A return from within a block exits the method where the block is defined.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   493
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   494
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   495
    (string = ';') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   496
        ^ '<expression> ; selector1 ; .... ; selectorN
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   497
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   498
a cascade expression; evaluate expression, and send messages 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   499
<selector1> ... <selectorN> to the first expressions receiver. 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   500
Returns the value of the last send. The cascade sends may also have arguments.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   501
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   502
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   503
    (string = '|') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   504
        ^ '| locals |  or: [:arg | statements]
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   505
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   506
''|'' is used to mark a local variable declaration or separates arguments
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   507
from the statements in a block. Notice, that in a block-argument declaration
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   508
these must be prefixed by a colon character.
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   509
''|'' is also a selector understood by Booleans.'
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   510
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   511
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   512
    ((string startsWith:'(') or:[string endsWith:')']) ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   513
        ^ '(<expression>)
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   514
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   515
expression grouping.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   516
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   517
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   518
    ((string startsWith:'[') or:[string endsWith:']']) ifTrue:[
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   519
        ^ '[:arg1 .. :argN | statements]
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   520
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   521
defines a block. 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   522
Blocks represent pieces of executable code. Definition of a block does
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   523
not evaluate it. The block is evaluated by sending it a value/value:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   524
message.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   525
Blocks are often passed as arguments to Booleans (i.e. ifTrue:[...]) or
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   526
collections (i.e. do:[...]).'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   527
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   528
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   529
    (string = ':') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   530
        ^ 'colons have different meaning depending on context:
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   531
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   532
1) they separate keyword-parts in symbols and keyword-messages as in:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   533
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   534
    #at:put:                     a constant keyword symbol
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   535
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   536
    rec at:index put:value       sends the #at:put: message to rec,
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   537
                                 passing index and value as arguments.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   538
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   539
2) within block-argument declarations as in:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   540
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   541
    [:arg1 :arg2 | statements]
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   542
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   543
3) within an identifier, they separate the nameSpace part from
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   544
   the name part; as in:
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   545
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   546
    Smalltalk::Array    - the Array class in the Smalltalk nameSpace.
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   547
    Foo::Array          - the Array class in the Foo nameSpace.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   548
'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   549
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   550
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   551
    (string = '.') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   552
        ^ 'statement. "<- period here"
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   553
statement
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   554
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   555
within a method or block, individual statements are separated by periods.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   556
'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   557
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   558
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   559
    (string startsWith:'#' ) ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   560
        (string startsWith:'#(' ) ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   561
            ^ 'is a constant Array.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   562
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   563
The elements of a constant Array must be Number-constants, nil, true or false.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   564
(notice, that not all Smalltalk implementations allow true, false and nil as
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   565
 constant-Array elements).'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   566
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   567
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   568
        (string startsWith:'#[') ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   569
            ^ 'is a constant ByteArray.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   570
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   571
The elements of a constant ByteArray must be Integer constants in the range
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   572
0 .. 255.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   573
(notice, that not all Smalltalk implementations support constant ByteArrays).'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   574
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   575
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   576
        (string startsWith:'#''') ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   577
            ^ 'is a constant symbol containing non-alphanumeric characters.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   578
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   579
Symbols are unique strings, meaning that there exists
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   580
exactly one instance of a given symbol. Therefore symbols can
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   581
be compared using == (identity compare) in addition to = (contents compare).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   582
Beside this, Symbols behave mostly like Strings.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   583
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   584
Notice, that not all Smalltalk implementations support this kind of symbols.'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   585
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   586
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   587
        ^ 'is a symbol.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   588
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   589
Symbols are unique strings, meaning that there exists
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   590
exactly one instance of a given symbol. Therefore symbols can
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   591
be compared using == (identity compare) in addition to = (contents compare).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   592
Beside this, Symbols behave mostly like Strings.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   593
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   594
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   595
    "/ is it a symbol without hash-character ?
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   596
    "/
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   597
"/    string knownAsSymbol ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   598
"/        ^ 'is nothing, but #' , string , ' is known as a symbol.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   599
"/
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   600
"/Symbols are unique strings, meaning that there exists
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   601
"/exactly one instance of a given symbol. Therefore symbols can
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   602
"/be compared using == (identity compare) in addition to = (contents compare).
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   603
"/Beside this, Symbols behave mostly like Strings.'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   604
"/    ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   605
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   606
    ^ nil
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   607
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   608
    "Modified: / 31.10.1998 / 14:28:58 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   609
! !
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   610
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   611
!Explainer class methodsFor:'documentation'!
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   612
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   613
version
913
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   614
    ^ '$Header: /cvs/stx/stx/libcomp/Explainer.st,v 1.35 1999-07-15 16:34:38 cg Exp $'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   615
! !