Explainer.st
author Claus Gittinger <cg@exept.de>
Fri, 14 Dec 2001 18:32:27 +0100
changeset 1232 2113cc4dd269
parent 1211 91e94e294819
child 1233 1015bcce9646
permissions -rw-r--r--
checkin from browser
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
1081
6e6255672d68 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
    13
"{ Package: 'stx:libcomp' }"
6e6255672d68 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
    14
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    15
Parser subclass:#Explainer
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    16
	instanceVariableNames:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    17
	classVariableNames:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    18
	poolDictionaries:''
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    19
	category:'System-Compiler'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    20
!
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    21
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    22
!Explainer class methodsFor:'documentation'!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    23
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    24
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    25
"
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    26
 COPYRIGHT (c) 1993 by Claus Gittinger
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    27
	      All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    28
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    29
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    30
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    32
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    33
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    34
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    35
"
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    36
!
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    37
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    38
documentation
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    39
"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    40
    a very simple explainer - much more should be added ...
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
    41
    This one is involved, when the 'explain' function is used in a 
84
claus
parents: 58
diff changeset
    42
    codeView (popup or via CMD-E).
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    43
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    44
    [author:]
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 146
diff changeset
    45
        Claus Gittinger
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    46
"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    47
! !
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    48
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    49
!Explainer class methodsFor:'explaining'!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    50
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    51
commonSuperClassOf:listOfClassNames
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    52
    |common found|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    53
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    54
    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
    55
        |class|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    56
336
b99c14f17afc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 290
diff changeset
    57
        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
    58
        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
    59
            common := class
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    60
        ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    61
            (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
    62
                "keep common"
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    63
            ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    64
                (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
    65
                    common := class
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    66
                ] ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    67
                    "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
    68
                    found := false.
1151
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    69
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    70
                    common allSuperclassesDo:[:sup |
1151
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    71
                        (found not and:[class isSubclassOf:sup]) ifTrue:[
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    72
                            common := sup.
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    73
                            found := true.
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    74
                        ]
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    75
                    ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    76
                    found ifFalse:[
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    77
                        class allSuperclassesDo:[:sup |
1151
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    78
                            (found not and:[common isSubclassOf:sup]) ifTrue:[
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    79
                                common := sup.
a1173e82de18 fixed #commonSuperClassOf:
Claus Gittinger <cg@exept.de>
parents: 1081
diff changeset
    80
                                found := true.
290
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
                        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    83
                    ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    84
                ]
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
        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    87
        common == Object ifTrue:[^ common]
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
    ^ common
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    90
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
    91
    "Modified: 17.6.1996 / 17:09:21 / stefan"
336
b99c14f17afc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 290
diff changeset
    92
    "Modified: 5.9.1996 / 19:34:41 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    93
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    94
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
    95
explain:someText in:source forClass:aClass
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
    96
    "Given a source and a substring of it, return a string containing
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
    97
     an explanation.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    98
     This is just a q&d implementation - to be correct, it should use the parser,
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
    99
     and explain from the parsetree (instead of doing string matches).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   100
     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
   101
     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
   102
     message selector. I.e. the explanation should be context sensitive.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   103
     Also, there could be much more detailed explanations."
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   104
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   105
    ^ self
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   106
        explain:someText in:source forClass:aClass short:false
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   107
!
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   108
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   109
explain:someText in:source forClass:aClass short:shortText
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   110
    "Given a source and a substring of it, return a string containing
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   111
     an explanation.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   112
     This is just a q&d implementation - to be correct, it should use the parser,
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   113
     and explain from the parsetree (instead of doing string matches).
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   114
     This leads to some wrong explanations, for example if some string is
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   115
     used as selector within a string, or if a variable is named like a
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   116
     message selector. I.e. the explanation should be context sensitive.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   117
     Also, there could be much more detailed explanations."
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   118
1159
24a034278a55 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 1151
diff changeset
   119
    |parser variables c string tmp
1211
91e94e294819 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
   120
     spc sym sel stringText clsName|
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   121
675
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   122
    string := someText string withoutSeparators.
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   123
    stringText := string allBold.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   124
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   125
    "
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   126
     ask parser for variable names
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   127
    "
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   128
    parser := self parseMethod:source in:aClass ignoreErrors:true ignoreWarnings:true.
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   129
    parser notNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   130
        "look for variables"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   131
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   132
        variables := parser methodVars.
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   133
        (variables notNil and:[variables includes:string]) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   134
            ^ '''' , stringText , ''' is a method variable.'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   135
        ].
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   136
        variables := parser methodArgs.
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   137
        (variables notNil and:[variables includes:string]) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   138
            ^ '''' , stringText , ''' is a method argument.'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   139
        ]
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   140
    ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   141
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   142
    parser isNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   143
        parser := self for:(ReadStream on:source) in:aClass
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   144
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   145
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   146
    "instvars"
84
claus
parents: 58
diff changeset
   147
    c := aClass whichClassDefinesInstVar:string.
claus
parents: 58
diff changeset
   148
    c notNil ifTrue:[
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   149
        c isMeta ifTrue:[
1211
91e94e294819 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
   150
            clsName := c theNonMetaclass name.
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   151
            shortText ifTrue:[
1211
91e94e294819 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
   152
                ^ '''' , stringText , ''': class instVar in ' , clsName , '.'
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   153
            ].
1211
91e94e294819 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
   154
            ^ '''' , stringText, ''' is a class instance variable in ' , clsName , '.'
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   155
        ].
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   156
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   157
        shortText ifTrue:[
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   158
            ^ '''' , stringText , ''': instVar in ' , c name , '.'
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   159
        ].
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   160
        ^ '''' , stringText , ''' is an instance variable in ' , c name , '.'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   161
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   162
84
claus
parents: 58
diff changeset
   163
"/    variables := aClass allInstVarNames.
claus
parents: 58
diff changeset
   164
"/    (variables notNil and:[variables includes:string]) ifTrue:[
claus
parents: 58
diff changeset
   165
"/        "where is it"
claus
parents: 58
diff changeset
   166
"/        c := aClass.
1159
24a034278a55 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 1151
diff changeset
   167
"/        [c notNil] whileTrue:[ |v|
84
claus
parents: 58
diff changeset
   168
"/            v := c instVarNames.
claus
parents: 58
diff changeset
   169
"/            (v notNil and:[v includes:string]) ifTrue:[
claus
parents: 58
diff changeset
   170
"/                ^ string , ' is an instance variable in ' , c name
claus
parents: 58
diff changeset
   171
"/            ].
claus
parents: 58
diff changeset
   172
"/            c := c superclass
claus
parents: 58
diff changeset
   173
"/        ].
claus
parents: 58
diff changeset
   174
"/        self error:'oops'
claus
parents: 58
diff changeset
   175
"/    ].
claus
parents: 58
diff changeset
   176
442
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   177
"/    "class instvars"
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   178
"/    variables := aClass class allInstVarNames.
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   179
"/    (variables notNil and:[variables includes:string]) ifTrue:[
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   180
"/        "where is it"
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   181
"/        c := aClass.
1159
24a034278a55 Remove unused method vars
Stefan Vogel <sv@exept.de>
parents: 1151
diff changeset
   182
"/        [c notNil] whileTrue:[ |v|
442
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   183
"/            v := c class instVarNames.
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   184
"/            (v notNil and:[v includes:string]) ifTrue:[
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   185
"/                ^ string , ' is a class instance variable in ' , c name
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   186
"/            ].
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   187
"/            c := c superclass
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   188
"/        ].
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   189
"/        self error:'oops'
80b2e3bf3e93 explaining class-instVars
Claus Gittinger <cg@exept.de>
parents: 422
diff changeset
   190
"/    ].
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   191
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   192
    "classvars"
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   193
    c := parser inWhichClassIsClassVar:string.
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   194
    c notNil ifTrue:[
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   195
        shortText ifTrue:[
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   196
            ^ '''' , stringText , ''': classVar in ' , c name , '.'
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   197
        ].
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   198
        ^ '''' , stringText , ''' is a class variable in ' , c name , '.'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   199
    ].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   200
1210
e3174ccbb5bb isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
   201
    c := aClass theNonMetaclass.
509
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   202
    c privateClasses do:[:pClass |
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   203
        (pClass name = string 
d8475399ca3e Correct handling of private classes.
Stefan Vogel <sv@exept.de>
parents: 503
diff changeset
   204
         or:[pClass nameWithoutPrefix = string]) ifTrue:[
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   205
            shortText ifTrue:[
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   206
                string := '''' , stringText , ''': private class in ''' , c name , '''.'.
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   207
            ] ifFalse:[
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   208
                string := '''' , stringText , ''' is a private class in ''' , c name , '''.'.
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   209
                string := (string , '\\It is only visible locally.') withCRs
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   210
            ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   211
            ^ string withCRs
422
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   212
        ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   213
    ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   214
456
abe32fed9c0d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 442
diff changeset
   215
    (spc := aClass nameSpace) notNil ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   216
        sym := (spc name , '::' , string) asSymbolIfInterned.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   217
        sym notNil ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   218
            (Smalltalk at:sym) isBehavior ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   219
                string :=  '''' , stringText , ''' is a class in the ''' , spc name , ''' nameSpace.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   220
                shortText ifFalse:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   221
                    string := (string 
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   222
                         , '\\It is only visible within this nameSpace.'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   223
                         , '\Access from the outside is possible'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   224
                         , '\by the special name ''' , spc name , '::' , string , '''.') withCRs
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   225
                ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   226
                ^ string withCRs
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   227
            ].
422
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   228
        ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   229
    ].
bdc16e1e31ab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 396
diff changeset
   230
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   231
"/    string knownAsSymbol ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   232
        "globals & symbols"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   233
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   234
        tmp := self explainKnownSymbol:string inClass:aClass short:shortText.
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   235
        tmp notNil ifTrue:[ ^ tmp].
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   236
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   237
        "/ try with added colon ...
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   238
        sel := string , ':'.
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   239
        Symbol allInstancesDo:[:sym |
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   240
            (sym startsWith:sel) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   241
                tmp := self explainKnownSymbol:sym inClass:aClass short:shortText.
839
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   242
                tmp notNil ifTrue:[ ^ tmp].
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   243
            ]
021af12ebd18 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   244
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   245
"/    ].
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   246
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   247
    "try for some obvious things"
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   248
    tmp := self explainPseudoVariable:string in:aClass short:true.
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   249
    tmp notNil ifTrue:[ ^ tmp].
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   250
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   251
    "try syntax ..."
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   252
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   253
    tmp := self explainSyntax:string short:shortText.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   254
    tmp notNil ifTrue:[ ^ tmp].
20
f8dd8ba75205 *** empty log message ***
claus
parents: 15
diff changeset
   255
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   256
    shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   257
        ^ ''
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   258
    ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   259
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   260
    parser isNil ifTrue:[
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   261
        ^ 'parse error - no explanation'
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   262
    ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   263
    ^ '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
   264
675
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   265
    "Created: / 3.12.1995 / 12:47:37 / cg"
a2f41004c24d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
   266
    "Modified: / 16.4.1997 / 12:46:11 / stefan"
1211
91e94e294819 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
   267
    "Modified: / 5.11.2001 / 16:54:23 / cg"
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   268
!
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   269
1188
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   270
explainGlobal:string inClass:aClass short:shortText
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   271
    "return explanation or nil"
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   272
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   273
    |sym stringText tmp val|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   274
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   275
    sym := string asSymbolIfInterned.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   276
    sym isNil ifTrue:[^ nil].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   277
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   278
    "try globals"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   279
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   280
    stringText := string allBold.
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   281
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   282
    (Smalltalk includesKey:sym) ifTrue:[
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   283
        "/ stringText := '''' , stringText , ''''.
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   284
        tmp := stringText , ' 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
   285
        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
   286
        val isBehavior ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   287
            "/ a class
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   288
            shortText ifTrue:[
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   289
                ^ stringText , ' is ' , (val isLoaded ifTrue:['a'] ifFalse:['an autoloaded'])
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   290
, ' class in the ''' , val category , ''' category.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   291
            ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
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
            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
   294
                tmp := tmp , '
503
b0d10f53a820 show 'autoloaded' for classes
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   295
' , string , ' is ' , (val isLoaded ifTrue:['a'] ifFalse:['an autoloaded'])
b0d10f53a820 show 'autoloaded' for classes
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   296
, ' class categorized as ' , val category , '
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   297
in the ''' , val package , ''' package.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   298
                ^ tmp.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   299
            ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   300
            tmp := tmp , '
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   301
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   302
' , string , ' is bound to the class ' , val name ,
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   303
' in category ' , val category , '.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   304
            ^ tmp.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   305
        ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   306
        shortText ifTrue:[
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   307
            ^ stringText , ' is ' , ' a global, currently bound to ' , val classNameWithArticle , '.'.
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   308
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   309
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   310
        tmp := tmp , '
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   311
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   312
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
   313
        ^ tmp.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   314
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   315
1188
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   316
    ^ nil
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   317
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   318
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   319
explainHereIn:aClass
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   320
    ^ 'like self, here refers to the object which received the message.
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   321
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   322
However, when sending a message to here the search for methods
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   323
implementing this message will start in the defining class (' , aClass name , ')
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   324
instead of the receivers class (' , aClass name , ' or subclass).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   325
Thus, using here, redefined methods will NOT be reached with a here-send.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   326
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   327
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   328
explainKnownSymbol:string inClass:aClass
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   329
    "return explanation or nil"
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   330
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   331
    ^ self explainKnownSymbol:string inClass:aClass short:false
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   332
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   333
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   334
explainKnownSymbol:string inClass:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   335
    "return explanation or nil"
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   336
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   337
    |sym|
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   338
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   339
    sym := string asSymbolIfInterned.
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   340
    sym isNil ifTrue:[^ nil].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   341
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   342
    "try globals"
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   343
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   344
    (Smalltalk includesKey:sym) ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   345
        ^ self explainGlobal:string inClass:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   346
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   347
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   348
    ^ self explainSelector:string inClass:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   349
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   350
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   351
explainPseudoVariable:string in:aClass
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   352
    "return explanation for the pseudoVariables self, super etc."
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   353
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   354
    ^ self explainPseudoVariable:string in:aClass short:false
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   355
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   356
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   357
explainPseudoVariable:string in:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   358
    "return explanation for the pseudoVariables self, super etc."
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   359
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   360
    (string = 'self') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   361
        ^ self explainSelfIn:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   362
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   363
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   364
    (string = 'super') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   365
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   366
            ^ '''super'' - message lookup starts in superclass ''' , aClass superclass name , '''.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   367
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   368
        ^ self explainSuperIn:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   369
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   370
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   371
    (string = 'here') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   372
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   373
            ^ '''here'' - message lookup always starts in ''' , aClass name , '''.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   374
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   375
        ^ self explainHereIn:aClass
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   376
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   377
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   378
    (string = 'thisContext') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   379
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   380
            ^ '''thisContext'' - the current stack frame as an object.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   381
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   382
        ^ 'thisContext is a pseudo variable (i.e. it is built in).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   383
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   384
ThisContext always refers to the context object for the currently executed method or
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   385
block (an instance of Context or BlockContext respectively). The calling chain and calling
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   386
receivers/selectors can be accessed via thisContext.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   387
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   388
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   389
    (string = 'true') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   390
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   391
            ^ '''true'' - the truth and nothing but the truth.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   392
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   393
        ^ 'true is a pseudo variable (i.e. it is built in).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   394
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   395
True represents logical truth. It is the one and only instance of class True.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   396
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   397
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   398
    (string = 'false') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   399
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   400
            ^ '''false'' - obvisously not true.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   401
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   402
        ^ 'false is a pseudo variable (i.e. it is built in).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   403
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   404
False represents logical falseness. It is the one and only instance of class False.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   405
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   406
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   407
    (string = 'nil') ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   408
        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   409
            ^ '''nil'' - undefined, unknown, void or dont care.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   410
        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   411
        ^ 'nil is a pseudo variable (i.e. it is built in).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   412
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   413
Nil is used for unitialized variables (among other uses).
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   414
Nil is the one and only instance of class UndefinedObject.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   415
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   416
    ^ nil
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   417
!
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   418
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   419
explainSelector:string inClass:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   420
    "return explanation or nil"
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   421
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   422
    |sym list count tmp commonSuperClass val s s2 
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   423
     firstImplementingClass cm msg t|
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   424
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   425
    sym := string asSymbolIfInterned.
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   426
    sym isNil ifTrue:[^ nil].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   427
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   428
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   429
     try selectors
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   430
     look who implements it
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   431
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   432
    list := Set new.
1081
6e6255672d68 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   433
    Smalltalk allClassesDo:[:c|
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   434
        (c implements:sym) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   435
            list add:(c name).
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   436
            firstImplementingClass isNil ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   437
                firstImplementingClass := c
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   438
            ]
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   439
        ].
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   440
        (c class implements:sym) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   441
            list add:(c name , ' class').
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   442
            firstImplementingClass isNil ifTrue:[
912
41eaf4909608 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   443
                firstImplementingClass := c class
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   444
            ]
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   445
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   446
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   447
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   448
    (aClass canUnderstand:sym) ifTrue:[
1184
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   449
        s2 := ('Instances of ''' , aClass name , ''' respond to #') , sym asText allBold , '.'.
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   450
        shortText ifFalse:[
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   451
            s2 := '\\' , s2 
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   452
                  , '\- inherited from ' withCRs
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   453
                  , (aClass whichClassImplements:sym) name asText allBold.
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   454
        ].
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   455
        firstImplementingClass := (aClass whichClassImplements:sym)
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   456
    ] ifFalse:[
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   457
        s2 := ''.
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   458
    ].
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   459
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   460
    count := list size.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   461
    (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
   462
        "
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   463
         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
   464
         list them
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   465
        "
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   466
        list := list asOrderedCollection sort.
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   467
        shortText ifTrue:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   468
            tmp := ' is implemented in '.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   469
        ] ifFalse:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   470
            tmp := ' is a selector implemented in '.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   471
        ].
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   472
        s := '#' , string asText allBold.
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   473
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   474
        (count == 1) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   475
            (t := list first) isMeta ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   476
                t := 'the ' , t
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   477
            ].
1184
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   478
            msg := s , tmp , t , '.'.
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   479
            shortText ifFalse:[
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   480
                msg := msg , s2.
b091e74f640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1183
diff changeset
   481
            ]
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   482
        ] ifFalse:[
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   483
            (count == 2) ifTrue:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   484
                msg := s , tmp , (list at:1) , ' and ' , (list at:2) , '.'.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   485
                shortText ifFalse:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   486
                    msg := msg , s2.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   487
                ].
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   488
            ] ifFalse:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   489
                shortText ifTrue:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   490
                    msg := s , tmp , count printString , ' classes.'.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   491
                    ^ msg
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   492
                ].
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   493
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   494
                (count == 3) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   495
                    msg := s , tmp , '
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   496
' , (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
   497
                ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   498
                    (count == 4) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   499
                        msg := s , tmp , '
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   500
' , (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
   501
                    ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   502
                        "
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   503
                         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
   504
                         superclass and show it ...
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   505
                        "
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   506
                        commonSuperClass := self commonSuperClassOf:list.
913
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   507
                        (commonSuperClass ~~ Object 
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   508
                        and:[commonSuperClass ~~ Behavior
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   509
                        and:[commonSuperClass ~~ Class
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   510
                        and:[commonSuperClass ~~ ClassDescription]]]) ifTrue:[
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   511
                            (list includes:commonSuperClass) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   512
                                msg := s . tmp , count printString , commonSuperClass name 
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   513
                                         , ' and redefined in ' , (count - 1) printString  
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   514
                                         , ' subclasses'
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   515
                                         , s2.
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   516
                                firstImplementingClass := commonSuperClass
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   517
                            ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   518
                                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
   519
                            ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   520
                        ] ifFalse:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   521
                            (commonSuperClass == Object
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   522
                            and:[commonSuperClass implements:sym]) ifTrue:[
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   523
                                msg := s , tmp , count printString , ' classes.
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   524
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   525
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
   526
since there is an implementation in Object.' , s2.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   527
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   528
                                firstImplementingClass := Object
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   529
                            ] ifFalse:[
913
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   530
                                ((commonSuperClass == Behavior
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   531
                                 or:[commonSuperClass == Class
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   532
                                 or:[commonSuperClass == ClassDescription]])
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   533
                                and:[commonSuperClass implements:sym]) ifTrue:[
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   534
                                    msg := s , tmp , count printString , ' classes.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   535
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   536
All classes seem to respond to that message, 
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   537
since there is an implementation in ' , commonSuperClass name , '.' , s2.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   538
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   539
                                    firstImplementingClass := commonSuperClass
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   540
                                ] ifFalse:[
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   541
                                    "
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   542
                                     otherwise just give the number.
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   543
                                    "
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   544
                                    msg := s , tmp , count printString , ' classes.' , s2
bd05fb9dbc9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
   545
                                ]
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   546
                            ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   547
                        ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   548
                    ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   549
                ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   550
            ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   551
        ].
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   552
        shortText ifFalse:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   553
            firstImplementingClass notNil ifTrue:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   554
                WindowGroup activeGroup withWaitCursorDo:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   555
                    cm := firstImplementingClass compiledMethodAt:sym.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   556
                    cm notNil ifTrue:[
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   557
                        cm := cm methodComment.
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   558
                    ]
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   559
                ].
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   560
                cm notNil ifTrue:[
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   561
                    msg := msg , '\\The comment in ' withCRs , firstImplementingClass name allBold , ' is:\' withCRs , cm allItalic.
911
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   562
                ]
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   563
            ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   564
        ].
be6ce6482a7f extract the methods comment and show it.
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   565
        ^ msg
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   566
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   567
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   568
    ^ nil
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 263
diff changeset
   569
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   570
    "Modified: / 17.6.1996 / 17:09:30 / stefan"
835
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   571
    "Created: / 23.3.1999 / 13:29:33 / cg"
84c5b20b91c5 more explaining
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   572
    "Modified: / 23.3.1999 / 13:40:40 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   573
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   574
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   575
explainSelfIn:aClass short:shortText
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   576
    |sub selfString|
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   577
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   578
    selfString := '''' , 'self' allBold , ''''.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   579
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   580
    sub := aClass allSubclasses collect:[:c | c name].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   581
    sub size == 0 ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   582
        shortText ifTrue:[
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   583
            ^ selfString , ' - an instance of ''' , aClass name , '''.'
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   584
        ].
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   585
        ^ selfString , 'refers to the object which received the message.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   586
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   587
In this case, it will be an instance of ' , aClass name , '.'
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   588
    ].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   589
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   590
    shortText ifTrue:[
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   591
        sub size == 1 ifTrue:[
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   592
            ^ selfString , ' - an instance of ''' , aClass name , ''' or ''' , sub first , '''.'
1185
7030f795b00d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   593
        ].
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   594
        ^ selfString , ' - an instance of ''' , aClass name , ''' or one of its subclasses.'
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   595
    ].
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   596
    sub size <= 5 ifTrue:[
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   597
        ^ selfString , ' refers to the object which received the message.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   598
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   599
In this case, it will be an instance of ' , aClass name , '
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   600
or one of its subclasses:
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   601
58
15b00d1236db asText eliminated
claus
parents: 54
diff changeset
   602
' , sub asStringCollection asString
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   603
    ].
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   604
1198
f81479b0d838 better explanations
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   605
    ^ selfString , ' refers to the object which received the message.
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   606
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   607
In this case, it will be an instance of ' , aClass name , '
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   608
or one of its ' , sub size printString , ' subclasses.'
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   609
!
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   610
1188
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   611
explainSuperIn:aClass short:shortText
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   612
    |sub|
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   613
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   614
"/    sub := aClass allSubclasses collect:[:c | c name].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   615
"/    sub size == 0 ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   616
"/        shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   617
"/            ^ '''super'' - an instance of ''' , aClass name , '''; message lookup starts in ' , aClass superclass name , '.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   618
"/        ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   619
"/    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   620
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   621
    shortText ifTrue:[
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   622
        ^ '''super'' - message lookup starts in ' , aClass superclass name , '.'
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   623
    ].
8c0408dc39f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   624
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   625
    ^ 'like self, super refers to the object which received the message.
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   626
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   627
However, when sending a message to super the search for methods
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   628
implementing this message will start in the superclass (' , aClass superclass name , ')
84
claus
parents: 58
diff changeset
   629
instead of the receivers class (' , aClass name , ' or subclass).
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   630
Thus, using super, a redefined method can call the original method in its superclass.'
6
0cd4e7480440 *** empty log message ***
claus
parents: 2
diff changeset
   631
!
2
0aae80a0ae84 Initial revision
claus
parents:
diff changeset
   632
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   633
explainSyntax:string
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   634
    "try syntax ...; return explanation or nil"
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   635
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   636
    ^ self explainSyntax:string short:false
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   637
!
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   638
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   639
explainSyntax:string short:shortText
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   640
    "try syntax ...; return explanation or nil"
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   641
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   642
    ((string = ':=') or:[string = '_']) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   643
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   644
            ^ 'Assign to variable on the left side.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   645
        ].
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   646
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   647
        ^ '<variable> := <expression>
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   648
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   649
'':='' and ''_'' (which is left-arrow in some fonts) mean assignment.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   650
The variable is bound to (i.e. points to) the value of <expression>.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   651
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   652
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   653
    (string = '^') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   654
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   655
            ^ 'Return value from method.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   656
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   657
        ^ '^ <expression>
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   658
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   659
returns the value of <expression> as value from the method.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   660
A return from within a block exits the method where the block is defined.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   661
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   662
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   663
    (string = ';') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   664
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   665
            ^ 'Cascade expression.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   666
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   667
        ^ '<expression> ; selector1 ; .... ; selectorN
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   668
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   669
a cascade expression; evaluate expression, and send messages 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   670
<selector1> ... <selectorN> to the first expressions receiver. 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   671
Returns the value of the last send. The cascade sends may also have arguments.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   672
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   673
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   674
    (string = '|') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   675
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   676
            ^ ''.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   677
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   678
        ^ '| locals |  or: [:arg | statements]
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   679
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   680
''|'' is used to mark a local variable declaration or separates arguments
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   681
from the statements in a block. Notice, that in a block-argument declaration
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   682
these must be prefixed by a colon character.
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   683
''|'' is also a selector understood by Booleans.'
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   684
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   685
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   686
    ((string startsWith:'(') or:[string endsWith:')']) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   687
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   688
            ^ ''.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   689
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   690
        ^ '(<expression>)
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   691
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   692
expression grouping.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   693
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   694
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   695
    ((string startsWith:'[') or:[string endsWith:']']) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   696
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   697
            ^ ''.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   698
        ].
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   699
        ^ '[:arg1 .. :argN | statements]
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   700
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   701
defines a block. 
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   702
Blocks represent pieces of executable code. Definition of a block does
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   703
not evaluate it. The block is evaluated by sending it a value/value:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   704
message.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   705
Blocks are often passed as arguments to Booleans (i.e. ifTrue:[...]) or
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   706
collections (i.e. do:[...]).'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   707
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   708
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   709
    (string = ':') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   710
        shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   711
            ^ ''.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   712
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   713
        ^ 'colons have different meaning depending on context:
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   714
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   715
1) they separate keyword-parts in symbols and keyword-messages as in:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   716
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   717
    #at:put:                     a constant keyword symbol
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   718
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   719
    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
   720
                                 passing index and value as arguments.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   721
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   722
2) within block-argument declarations as in:
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   723
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   724
    [:arg1 :arg2 | statements]
834
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   725
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   726
3) within an identifier, they separate the nameSpace part from
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   727
   the name part; as in:
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   728
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   729
    Smalltalk::Array    - the Array class in the Smalltalk nameSpace.
34cef8ff7c05 more explaining
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   730
    Foo::Array          - the Array class in the Foo nameSpace.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   731
'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   732
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   733
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   734
    (string = '.') ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   735
        ^ 'statement. "<- period here"
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   736
statement
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   737
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   738
within a method or block, individual statements are separated by periods.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   739
'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   740
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   741
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   742
    (string startsWith:'#' ) ifTrue:[
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   743
        (string startsWith:'#(' ) ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   744
            shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   745
                ^ 'Array Literal.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   746
            ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   747
            ^ 'is a constant Array.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   748
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   749
The elements of a constant Array must be Number-constants, nil, true or false.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   750
(notice, that not all Smalltalk implementations allow true, false and nil as
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   751
 constant-Array elements).'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   752
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   753
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   754
        (string startsWith:'#[') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   755
            shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   756
                ^ 'ByteArray Literal.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   757
            ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   758
            ^ 'is a constant ByteArray.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   759
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   760
The elements of a constant ByteArray must be Integer constants in the range
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   761
0 .. 255.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   762
(notice, that not all Smalltalk implementations support constant ByteArrays).'
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   763
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   764
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   765
        (string startsWith:'#''') ifTrue:[
1183
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   766
            shortText ifTrue:[
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   767
                ^ 'Symbol Literal.'.
39f5ca4778d5 added short explanations
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   768
            ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   769
            ^ 'is a constant symbol containing non-alphanumeric characters.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   770
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   771
Symbols are unique strings, meaning that there exists
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   772
exactly one instance of a given symbol. Therefore symbols can
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   773
be compared using == (identity compare) in addition to = (contents compare).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   774
Beside this, Symbols behave mostly like Strings.
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   775
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   776
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
   777
        ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   778
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   779
        shortText ifTrue:[
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   780
            ^ 'Symbol Literal.'.
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   781
        ].
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   782
        ^ 'is a symbol.
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   783
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   784
Symbols are unique strings, meaning that there exists
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   785
exactly one instance of a given symbol. Therefore symbols can
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   786
be compared using == (identity compare) in addition to = (contents compare).
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   787
Beside this, Symbols behave mostly like Strings.'
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   788
    ].
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   789
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   790
    "/ is it a symbol without hash-character ?
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   791
    "/
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   792
"/    string knownAsSymbol ifTrue:[
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   793
"/        ^ 'is nothing, but #' , string , ' is known as a symbol.
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   794
"/
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   795
"/Symbols are unique strings, meaning that there exists
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   796
"/exactly one instance of a given symbol. Therefore symbols can
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   797
"/be compared using == (identity compare) in addition to = (contents compare).
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   798
"/Beside this, Symbols behave mostly like Strings.'
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   799
"/    ].
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   800
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   801
    ^ nil
796
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   802
65a547620ef4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
   803
    "Modified: / 31.10.1998 / 14:28:58 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   804
! !
49
02660b790c3e *** empty log message ***
claus
parents: 24
diff changeset
   805
396
26c32f1f791b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   806
!Explainer class methodsFor:'documentation'!
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   807
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   808
version
1232
2113cc4dd269 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
   809
    ^ '$Header: /cvs/stx/stx/libcomp/Explainer.st,v 1.47 2001-12-14 17:32:27 cg Exp $'
146
3d407ab8ac44 suppress messages on transcript when explaining
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   810
! !