Parser.st
author Claus Gittinger <cg@exept.de>
Mon, 24 Sep 2001 11:46:32 +0200
changeset 1189 5f2bfc0d501b
parent 1187 902d406b9100
child 1190 8600334a549e
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     1
"
4
f6fd83437415 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
     3
	      All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     4
7ad01559b262 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
"
7ad01559b262 Initial revision
claus
parents:
diff changeset
    12
1043
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
    13
"{ Package: 'stx:libcomp' }"
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
    14
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    15
Scanner subclass:#Parser
165
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    16
	instanceVariableNames:'classToCompileFor selfValue contextToEvaluateIn selector
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    17
		methodArgs methodArgNames methodVars methodVarNames tree
1077
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
    18
		currentBlock parseForCode readInstVars readClassVars readGlobals
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
    19
		usedInstVars usedClassVars usedVars modifiedInstVars
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
    20
		modifiedClassVars modifiedGlobals usesSuper usedGlobals
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
    21
		usedSymbols messagesSent messagesSentToSelf messagesSentToSuper
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
    22
		localVarDefPosition evalExitBlock selfNode superNode nilNode
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
    23
		hasPrimitiveCode hasNonOptionalPrimitiveCode primitiveNr
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
    24
		primitiveResource logged warnedUndefVars warnedUnknownNamespaces
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    25
		warnSTXHereExtensionUsed warnUnusedVars correctedSource
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    26
		foldConstants lineNumberInfo currentNamespace
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    27
		currentUsedNamespaces warnUndeclared methodNode
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    28
		alreadyWarnedClassInstVarRefs localBlockVarDefPosition
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    29
		endOfSelectorPosition startOfBlockPosition primitiveContextInfo
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    30
		usedLocalVars modifiedLocalVars alreadyWarnedUninitializedVars
1119
bbdab29749c1 remember already warned-about selectors
Claus Gittinger <cg@exept.de>
parents: 1112
diff changeset
    31
		alreadyWarnedUnimplementedSelectors'
165
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    32
	classVariableNames:'PrevClass PrevInstVarNames PrevClassVarNames
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    33
		PrevClassInstVarNames LazyCompilation ArraysAreImmutable
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    34
		ImplicitSelfSends WarnST80Directives WarnUnusedVars FoldConstants
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    35
		LineNumberInfo SuppressDoItCompilation StringsAreImmutable
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
    36
		ParseErrorSignal'
165
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    37
	poolDictionaries:''
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    38
	category:'System-Compiler'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    39
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    40
971
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    41
Exception subclass:#ParseError
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    42
	instanceVariableNames:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    43
	classVariableNames:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    44
	poolDictionaries:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    45
	privateIn:Parser
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    46
!
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    47
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    48
Parser::ParseError subclass:#UndefinedSuperclassError
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    49
	instanceVariableNames:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    50
	classVariableNames:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    51
	poolDictionaries:''
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    52
	privateIn:Parser
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    53
!
00581dfc0b59 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
    54
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
    55
!Parser class methodsFor:'documentation'!
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    56
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    57
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    58
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    59
 COPYRIGHT (c) 1989 by Claus Gittinger
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
    60
	      All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    61
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    62
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    63
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    64
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    65
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    66
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    67
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    68
"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    69
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
    70
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    71
documentation
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    72
"
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    73
    Parser is used for both parsing and evaluating smalltalk expressions;
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    74
    it first builds a parseTree which is then interpreted (evaluate) or
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    75
    compiled. Compilation is done in the subclass ByteCodeCompiler and/or
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    76
    the (planned) MachineCodeCompiler.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    77
173
247ae4b8af76 interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 171
diff changeset
    78
    methods of main interest are:
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
    79
        Parser evaluateExpression:...
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    80
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    81
    and:
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
    82
        Parser parseExpression:...
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
    83
        Parser parseMethod:...
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    84
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    85
    there is protocol to parse complete methods, selector specs, body only etc.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    86
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    87
    Parser is also used to find the referenced/modified inst/classvars of
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    88
    a method - this is done by sending parseXXX message to a parser and asking
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    89
    the parser for referencedXVars or modifiedXVars (see SystemBrowser).
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    90
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    91
    You can also use parsers for all kinds of other things (ChangesBrowser for
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    92
    example analyzes the expressions in the changelist ...) by looking at the
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    93
    parsers tree. (Although this is somewhat dangerous, since it exports the
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
    94
    compilers internals ... better style is to add specialized query methods here)
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    95
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    96
    One instance of Parser is created to parse one method or expression - i.e.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    97
    its not suggested to reuse parsers.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
    98
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    99
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   100
  Constant folding:
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   101
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   102
    The parser has various modes for constant folding; by default, only numeric
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   103
    expressions involving integers and floats are constant folded
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   104
    (i.e. something like 'Float pi sin' or '1.5 + 0.3' will be reduced to a constant).
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   105
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   106
    Constant folding can be turned off completely (setting FoldConstants to nil)
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   107
    to ``secure folding'', which only folds constant numbers (#level1) or to #full. 
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   108
    In full mode, more constant expressions are folded (for example: '1.0 @ 1.0' is 
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   109
    reduced to a constant point), but the resulting code may not be compatible with other 
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   110
    smalltalk systems (consider the case, where the point is modified using #x: or #y: messages). 
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   111
    Therefore, this mode is a bit dangerous and disabled by default.
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   112
    The current implementation, base upon a global constant-folding setting is somewhat stupid
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   113
    and intermediate - a better solution would be to allow the optimization to be controlled
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   114
    by a method-pragma, since it may make sense to disable optimization on a method level,
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   115
    if its known that the used constant objects are subject of modifications as described above.
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   116
    
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   117
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   118
  Immutable arrays:
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   119
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   120
    Immutable arrays are experimental and being evaluated.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   121
    Consider the case of a method returning '#(1 2 3 4)', and that array being modified
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   122
    by some other method (using #at:put:). Since the array-return is actually a return of
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   123
    a reference to the compiler created array, the next invokation of the method will
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   124
    return the modified array. These are hard to find bugs.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   125
    By an option, the compiler can generate immutable arrays, which dont allow modification
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   126
    of its elements. For clean code, you should enable this option during development.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   127
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   128
    As mentioned above, this is experimental. If it is reported to be a useful feature,
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   129
    the immutable feature will be extended to strings, point-literals etc. in a future version
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   130
    of st/x.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   131
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   132
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   133
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   134
    [Instance variables:]
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   135
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   136
        classToCompileFor   <Class>             the class (or nil) we are compiling for
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   137
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   138
        selfValue           <any>               value to use as self when interpreting
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   139
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   140
        contextToEvaluateIn <Context>           the context (or nil) when interpreting
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   141
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   142
        selector            <Symbol>            the selector of the parsed method
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   143
                                                (valid after parseMethodSpecification)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   144
        methodArgs                              internal
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   145
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   146
        methodArgNames      <Collection>        the names of the arguments
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   147
                                                (valid after parseMethodSpecification)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   148
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   149
        methodVars                              internal
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   150
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   151
        methodVarNames      <Collection>        the names of the method locals
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   152
                                                (valid after parseMethodBodyVarSpec)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   153
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   154
        tree                <ParseTree>         the parse tree - valid after parsing
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   155
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   156
        currentBlock                            if currently parsing for a block
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   157
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   158
        usedInstVars                            set of all accessed instances variables
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   159
                                                (valid after parsing)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   160
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   161
        usedClassVars                           same for classVars
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   162
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   163
        usedVars                                all used variables (inst, class & globals)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   164
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   165
        modifiedInstVars                        set of all modified instance variables
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   166
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   167
        modifiedClassVars                       same for clasVars
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   168
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   169
        localVarDefPosition <Integer>           the character offset of the local variable
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   170
                                                def. (i.e. the first '|' if any)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   171
                                                Not yet used - prepared for automatic add of
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   172
                                                undefined variables
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   173
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   174
        evalExitBlock                           internal for interpretation
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   175
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   176
        selfNode            <Node>              cached one-and-only 'self' node
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   177
        superNode           <Node>              cached one-and-only 'super' node
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   178
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   179
        hasPrimitiveCode    <Boolean>           true, if it contains ST/X style primitive code
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   180
        hasNonOptionalPrimitiveCode    
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   181
                            <Boolean>           true, if it contains ST/X style primitive code
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   182
                                                which is NOT flagged by the OPTIONAL directive.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   183
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   184
        primitiveNr         <Integer>           the parsed ST-80 type primitive number (or nil)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   185
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   186
        logged
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   187
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   188
        warnedUndefVars     <Set>               set of all variables which the parser has
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   189
                                                already output a warning (to avoid multiple
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   190
                                                warnings about the same variable)
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   191
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   192
    [Class variables:]
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   193
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   194
        PrevClass           <Class>             class, of which properties are
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   195
                                                cached in:
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   196
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   197
        PrevInstVarNames      <Collection>      instance variablenames of cached class
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   198
        PrevClassVarNames     <Collection>      class variablenames of cached class
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   199
        PrevClassInstVarNames <Collection>      class instance variablenames of cached class
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   200
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   201
        LazyCompilation       <Boolean>         EXPERIMENTAL: lazy compilation
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   202
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   203
        ArraysAreImmutable    <Boolean>         if true, create array literals
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   204
                                                as instances of ImmutableArray,
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   205
                                                which cannot be stored into.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   206
                                                Default is false, for compatibility.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   207
                                                Can be turned on while developping
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   208
                                                new code to make certain that side
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   209
                                                effects are avoided.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   210
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   211
        WarnST80Directives    <Boolean>         if true, give warnings about
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   212
                                                ST-80 directives (resource defs)
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   213
                                                which are ignored in st/x.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   214
                                                defaults to false.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   215
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   216
        FoldConstants         <Symbol>          controls how constant folding should be
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   217
                                                done.
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   218
                                                Can be one of:
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   219
                                                        nil      - no constant folding
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   220
                                                        #level1  - numeric optimizations only
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   221
                                                        #level2  - secure optimizations only
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   222
                                                        #full    - full folding
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   223
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   224
                                                level1:   arithmetic on constant numbers
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   225
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   226
                                                level2:   above PLUS array conversions with #asFloatArray,
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   227
                                                          #asDoubleArray, string concatenation
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   228
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   229
                                                full:     constant points.
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   230
                                                          
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   231
    [see also:]
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   232
        ByteCodeCompiler Scanner ObjectFileLoader
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   233
        Workspace
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   234
        SystemBrowser
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 260
diff changeset
   235
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 260
diff changeset
   236
    [author:]
755
49ae81e86b7b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 752
diff changeset
   237
        Claus Gittinger
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   238
"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   239
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   240
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   241
!Parser class methodsFor:'instance creation'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   242
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   243
for:aStringOrStream in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   244
    "return a new parser, reading code for aClass from aStringOrStream"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   245
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   246
    |parser|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   247
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   248
    parser := self for:aStringOrStream.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   249
    parser setClassToCompileFor:aClass.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   250
    ^ parser
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   251
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   252
1020
7f52741f59dc category renamining
Claus Gittinger <cg@exept.de>
parents: 1008
diff changeset
   253
!Parser class methodsFor:'Compatibility - ST80'!
540
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   254
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   255
parse:aString class:aClass
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   256
    "same as #parseMethod:in: for ST80 compatibility."
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   257
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   258
    |parser|
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   259
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   260
    parser := self parseMethod:aString in:aClass.
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   261
    parser notNil ifTrue:[^ parser tree].
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   262
    ^ nil
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   263
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   264
    "Modified: 19.6.1997 / 16:34:57 / cg"
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   265
! !
642f56fab795 ST80 compatible parse:class:
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   266
920
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   267
!Parser class methodsFor:'Compatibility - Squeak'!
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   268
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   269
evaluate:someString for:aReceiver logged:logged
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   270
    ^ self evaluate:someString receiver:aReceiver logged:logged
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   271
        
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   272
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   273
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   274
! !
23f7bb1023cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
   275
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   276
!Parser class methodsFor:'Signal constants'!
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   277
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   278
parseErrorSignal
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   279
    ^ ParseErrorSignal
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   280
! !
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   281
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   282
!Parser class methodsFor:'changes'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   283
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   284
flushNameCache
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   285
    "unconditional flush name caches"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   286
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   287
    [
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   288
        PrevClass notNil ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   289
            PrevClass removeDependent:Parser
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   290
        ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   291
        PrevClass := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   292
        PrevInstVarNames := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   293
        PrevClassVarNames := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   294
        PrevClassInstVarNames := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
   295
    ] valueUninterruptably
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   296
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   297
    "Parser flushNameCache"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   298
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   299
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   300
update:something with:someArgument from:changedObject
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   301
    "aClass has changed its definition - flush name caches if we have to"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   302
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   303
    (changedObject == PrevClass) ifTrue:[
1090
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   304
        something == #definition ifTrue:[
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   305
            self flushNameCache
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   306
        ]
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   307
    ].
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   308
    (changedObject == Smalltalk) ifTrue:[
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   309
        something == #classDefinition ifTrue:[
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   310
            self flushNameCache
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   311
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   312
    ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   313
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   314
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   315
!Parser class methodsFor:'class initialization'!
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   316
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   317
initialize
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   318
    LazyCompilation := false.      "/ usually set to true in your .rc file
752
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   319
    ArraysAreImmutable := false.   "/ usually left false for ST-80 compatibility
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   320
    StringsAreImmutable := false.   "/ usually left false for ST-80 compatibility
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   321
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   322
    ImplicitSelfSends := false.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   323
    WarnST80Directives := false.
1172
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
   324
    WarnUnusedVars := "true" false.
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   325
    FoldConstants := #level1.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   326
    LineNumberInfo := false.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   327
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   328
    ParseErrorSignal isNil ifTrue:[
1109
ff6766ac4388 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   329
        ParseErrorSignal := Error newSignalMayProceed:true.
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   330
        ParseErrorSignal notifierString:'parse error'.
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   331
        ParseErrorSignal nameClass:self message:#parseErrorSignal.
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   332
    ].
1090
7f49c607a315 catch change-notifications from Smalltalk (to flush PrevClass cache)
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   333
    Smalltalk addDependent:self.
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   334
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   335
    "
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   336
     self initialize
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   337
    "
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   338
752
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   339
    "Modified: / 3.8.1998 / 14:53:47 / cg"
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   340
! !
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   341
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   342
!Parser class methodsFor:'controlling compilation'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   343
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   344
arraysAreImmutable
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   345
    "return true if arrays are immutable literals"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   346
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   347
    ^ ArraysAreImmutable
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   348
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   349
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   350
arraysAreImmutable:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   351
    "turn on/off immutable array literals - default is false for ST-80 compatibilty."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   352
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   353
    ArraysAreImmutable := aBoolean.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   354
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   355
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   356
     can be added to your private.rc file:
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   357
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   358
     Compiler arraysAreImmutable:true     
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   359
     Compiler arraysAreImmutable:false      
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   360
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   361
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   362
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   363
compileLazy
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   364
    "return true if compiling lazy"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   365
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   366
    ^ LazyCompilation.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   367
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   368
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   369
compileLazy:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   370
    "turn on/off lazy compilation - return previous setting.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   371
     Actually this flag belongs into the ByteCodeCompiler subclass,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   372
     but it also controls the reporting of some errors here; therefore
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   373
     its located here"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   374
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   375
    |oldLazy|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   376
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   377
    oldLazy := LazyCompilation.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   378
    LazyCompilation := aBoolean.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   379
    ^ oldLazy
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   380
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   381
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   382
     usually set in your .rc file
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   383
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   384
     Compiler compileLazy:false         
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   385
     Compiler compileLazy:true          
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   386
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   387
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   388
210
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   389
foldConstants
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   390
    "return a symbol describing how constants are to be folded"
210
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   391
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   392
    ^ FoldConstants
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   393
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   394
    "Created: 9.2.1996 / 17:40:13 / cg"
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   395
!
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   396
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   397
foldConstants:aSymbol
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   398
    "set the symbol describing how constants are to be folded.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   399
     It can be:
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   400
	nil             - no constant folding
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   401
	#level1         - numeric constants only
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   402
	#level2         - level1 PLUS array conversions PLUS string concatenation
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   403
	#full           - level2 PLUS constant points, constant rectangles (dangerous)"
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   404
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   405
    FoldConstants := aSymbol
210
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   406
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   407
    "Created: 9.2.1996 / 17:40:34 / cg"
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   408
!
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
   409
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   410
implicitSelfSends
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   411
    "return true if undefined variables with
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   412
     lowercase first character are to be turned
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   413
     into implicit self sends"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   414
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   415
    ^ ImplicitSelfSends
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   416
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   417
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   418
implicitSelfSends:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   419
    "turn on/off implicit self sends"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   420
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   421
    ImplicitSelfSends := aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   422
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   423
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   424
     Compiler implicitSelfSends:true
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   425
     Compiler implicitSelfSends:false 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   426
    "
377
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   427
!
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   428
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   429
lineNumberInfo
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   430
    ^ LineNumberInfo
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   431
!
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   432
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   433
lineNumberInfo:aBoolean
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
   434
    LineNumberInfo := aBoolean
752
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   435
!
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   436
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   437
stringsAreImmutable
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   438
    "return true if strings are immutable literals"
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   439
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   440
    ^ StringsAreImmutable
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   441
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   442
    "Created: / 3.8.1998 / 14:53:25 / cg"
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   443
!
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   444
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   445
stringsAreImmutable:aBoolean
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   446
    "turn on/off immutable string literals - default is false for ST-80 compatibilty."
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   447
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   448
    StringsAreImmutable := aBoolean.
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   449
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   450
    "
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   451
     can be added to your private.rc file:
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   452
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   453
     Compiler stringsAreImmutable:true     
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   454
     Compiler stringsAreImmutable:false      
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   455
    "
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   456
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
   457
    "Created: / 3.8.1998 / 14:53:28 / cg"
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   458
!
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   459
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   460
warnUnusedVars
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   461
    "controls generation of warning messages about unued method variables"
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   462
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   463
    ^ WarnUnusedVars
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   464
!
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   465
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   466
warnUnusedVars:aBoolean
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   467
    "controls generation of warning messages about unued method variables"
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   468
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
   469
    WarnUnusedVars := aBoolean
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   470
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   471
481
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   472
!Parser class methodsFor:'defaults'!
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   473
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   474
maxLineNumber
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   475
    "return the maximum lineNumber that is possibly
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   476
     encoded in a methods byteCode debugging information.
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   477
     Since lineNumber entries only have 1 byte available,
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   478
     this is 255 for byteCode methods."
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   479
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   480
    ^ 255
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   481
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   482
    "Created: 14.2.1997 / 16:52:54 / cg"
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   483
! !
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
   484
1187
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   485
!Parser class methodsFor:'error correction'!
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   486
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   487
findBestSelectorsFor:aString
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   488
    "collect known selectors with their spelling distances to aString;
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   489
     return the 10 best suggestions"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   490
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   491
    |info n|
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   492
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   493
    info := SortedCollection new.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   494
    info sortBlock:[:a :b | a value > b value].
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   495
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   496
    n := 0.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   497
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   498
    Symbol allInstancesDo:[:sym |
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   499
        |dist|
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   500
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   501
        dist := aString spellAgainst:sym.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   502
        dist > 20 ifTrue:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   503
            info add:(sym -> dist).
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   504
            n := n + 1.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   505
            n > 10 ifTrue:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   506
                info removeLast.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   507
            ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   508
        ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   509
    ].
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   510
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   511
    ^ info asOrderedCollection collect:[:a | a key]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   512
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   513
    "Time millisecondsToRun:[Parser new findBestSelectorsFor:'foo']"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   514
    "Parser new findBestSelectorsFor:'findBestSel'"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   515
    "Parser new findBestSelectorsFor:'fildBestSelectrFr'"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   516
!
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   517
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   518
findBestSelectorsFor:aString in:aClassOrNil
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   519
    "collect known selectors with their spelling distances to aString;
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   520
     return the 10 best suggestions. If the argument, aClassOrNil is not nil,
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   521
     the message is assumed to be sent to instances of that class (i.e. offer
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   522
     corrections from that hierarchy only)"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   523
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   524
    |info n block lcSelector|
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   525
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   526
    info := SortedCollection new.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   527
    info sortBlock:[:a :b | a value > b value].
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   528
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   529
    n := 0.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   530
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   531
    lcSelector := aString asLowercase.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   532
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   533
    block := [:sym :mthd|
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   534
        |dist lcSym|
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   535
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   536
        lcSym := sym asLowercase.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   537
        (info contains:[:i | i key == sym]) ifFalse:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   538
            dist := lcSelector spellAgainst:lcSym.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   539
            (dist > 20 and:[mthd isObsolete not]) ifTrue:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   540
                info add:(sym -> dist).
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   541
                n := n + 1.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   542
                n > 10 ifTrue:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   543
                    info removeLast.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   544
                ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   545
            ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   546
        ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   547
    ].
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   548
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   549
    aClassOrNil isNil ifTrue:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   550
        Smalltalk allClassesDo:[:cls |
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   551
            cls methodDictionary keysAndValuesDo:block.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   552
            cls class methodDictionary keysAndValuesDo:block.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   553
        ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   554
    ] ifFalse:[
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   555
        aClassOrNil withAllSuperclassesDo:[:cls |
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   556
            cls methodDictionary keysAndValuesDo:block.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   557
            cls class methodDictionary keysAndValuesDo:block.
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   558
        ]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   559
    ].
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   560
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   561
    ^ info asOrderedCollection collect:[:a | a key]
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   562
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   563
    "Modified: / 19.1.2000 / 16:43:37 / cg"
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   564
! !
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   565
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   566
!Parser class methodsFor:'evaluating expressions'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   567
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   568
evaluate:aStringOrStream
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   569
    "return the result of evaluating an expression in aStringOrStream.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   570
     No doit-entry is added to the changeLog."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   571
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   572
    ^ self 
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   573
	evaluate:aStringOrStream 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   574
	in:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   575
	receiver:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   576
	notifying:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   577
	logged:false
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   578
	ifFail:nil 
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   579
	compile:true
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   580
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   581
    "
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   582
     Compiler evaluate:'1 + 2'
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   583
     Compiler evaluate:'''hello world'' asSortedCollection displayString printNL'
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   584
     Compiler evaluate:'''hello world'' asSortedCollection printNL'
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   585
    "
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   586
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   587
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   588
evaluate:aStringOrStream compile:compile
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   589
    "return the result of evaluating aString, 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   590
     The compile argument specifies if the string should be compiled down to 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   591
     bytecode or instead be interpreted from the parseTree.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   592
     The first should be done for doIts etc, where a readable walkback is
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   593
     required.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   594
     The latter is better done for constants, styleSheet and resource
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   595
     reading and simple sends, where the overhead of compilation is bigger
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   596
     than the interpretation overhead."
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   597
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   598
    ^ self 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   599
	evaluate:aStringOrStream
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   600
	in:nil
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   601
	receiver:nil 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   602
	notifying:nil 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   603
	logged:false
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   604
	ifFail:nil
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   605
	compile:compile 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   606
!
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   607
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   608
evaluate:aStringOrStream ifFail:failBlock
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   609
    "return the result of evaluating an expression in aStringOrStream.
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   610
     In case of any syntax errors, return the value of failBlock.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   611
     No doit-entry is added to the changeLog."
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   612
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   613
    ^ self 
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   614
	evaluate:aStringOrStream 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   615
	in:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   616
	receiver:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   617
	notifying:nil 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   618
	logged:false
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
   619
	ifFail:failBlock 
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   620
	compile:true
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   621
    "
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   622
     Compiler evaluate:'1 +' ifFail:['oops']   
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   623
    "
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   624
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   625
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   626
evaluate:aStringOrStream in:aContext receiver:anObject notifying:requestor ifFail:failBlock
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   627
    "return the result of evaluating aStringOrStream, errors are reported to requestor. 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   628
     Allow access to anObject as self and to its instVars (used in the inspector).
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   629
     No doIt entry is added to the change-file. 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   630
     If the failBlock argument is non-nil, it is evaluated if an error occurs."
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   631
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   632
    ^ self 
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   633
        evaluate:aStringOrStream
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   634
        in:aContext
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   635
        receiver:anObject
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   636
        notifying:requestor
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   637
        logged:false
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   638
        ifFail:nil
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   639
        compile:true
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   641
    "Modified: / 17.1.1998 / 02:54:07 / cg"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   642
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   643
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   644
evaluate:aStringOrStream in:aContext receiver:anObject notifying:requestor logged:logged ifFail:failBlock
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   645
    "return the result of evaluating aStringOrStream, errors are reported to requestor. 
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   646
     Allow access to anObject as self and to its instVars (used in the inspector).
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   647
     If logged is true, an entry is added to the change-file. If the failBlock argument
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   648
     is non-nil, it is evaluated if an error occurs."
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   649
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   650
    ^ self 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   651
	evaluate:aStringOrStream
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   652
	in:aContext
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   653
	receiver:anObject
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   654
	notifying:requestor
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   655
	logged:logged 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   656
	ifFail:failBlock 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   657
	compile:true
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   658
!
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   659
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   660
evaluate:aStringOrStream in:aContext receiver:anObject notifying:requestor logged:logged ifFail:failBlock compile:compile
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   661
    "return the result of evaluating aStringOrStream, errors are reported to requestor. 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   662
     Allow access to anObject as self and to its instVars (used in the inspector).
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   663
     If logged is true, an entry is added to the change-file. If the failBlock argument
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   664
     is non-nil, it is evaluated if an error occurs.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   665
     Finally, compile specifies if the string should be compiled down to 
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   666
     bytecode or instead be interpreted from the parseTree.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   667
     The first should be done for doIts etc, where a readable walkback is
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   668
     required.
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   669
     The latter is better done for constants, styleSheet and resource
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   670
     reading and simple sends, where the overhead of compilation is bigger
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   671
     than the interpretation overhead."
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
   672
1152
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   673
    |parser tree mustBackup loggedString chgStream value s sReal spc cls
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   674
     nameSpaceQuerySignal|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   675
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   676
    aStringOrStream isNil ifTrue:[
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
   677
        EmptySourceNotificationSignal raiseRequest.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   678
        ^ nil
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   679
    ].
493
77e0d6979865 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
   680
    (mustBackup := aStringOrStream isStream) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   681
        s := aStringOrStream.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   682
    ] ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   683
        loggedString := aStringOrStream.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   684
        s := ReadStream on:aStringOrStream.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   685
    ].
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   686
    parser := self for:s.
229
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   687
    parser parseForCode.
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   688
    parser foldConstants:nil.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   689
    parser setSelf:anObject.
7ad01559b262 Initial revision
claus
parents:
diff changeset
   690
    parser setContext:aContext.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   691
    aContext notNil ifTrue:[
1032
f97183aecb4e oops - super-send-doIt in a debugger used receivers class
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
   692
        parser setSelf:(aContext receiver).
1087
49788122fa39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1085
diff changeset
   693
        aContext method notNil ifTrue:[
49788122fa39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1085
diff changeset
   694
            cls := aContext method mclass
49788122fa39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1085
diff changeset
   695
        ].
49788122fa39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1085
diff changeset
   696
        parser setClassToCompileFor:(cls ? aContext receiver class).
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   697
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   698
    parser notifying:requestor.
7ad01559b262 Initial revision
claus
parents:
diff changeset
   699
    parser nextToken.
1032
f97183aecb4e oops - super-send-doIt in a debugger used receivers class
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
   700
    parser evalExitBlock:[:value | parser release. ^ value].
79
26f81a94a6ea *** empty log message ***
claus
parents: 78
diff changeset
   701
    tree := parser parseMethodBodyOrEmpty.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   702
7ad01559b262 Initial revision
claus
parents:
diff changeset
   703
    "if reading from a stream, backup for next expression"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   704
    mustBackup ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   705
        parser backupPosition
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   706
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
   707
7ad01559b262 Initial revision
claus
parents:
diff changeset
   708
    (parser errorFlag or:[tree == #Error]) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   709
        failBlock notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   710
            ^ failBlock value
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   711
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   712
        ^ #Error
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   713
    ].
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   714
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   715
    tree isNil ifTrue:[
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
   716
        EmptySourceNotificationSignal raiseRequest.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   717
        ^ nil
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   718
    ].
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   719
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   720
    (logged
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   721
    and:[loggedString notNil
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   722
    and:[Smalltalk logDoits]]) ifTrue:[
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
   723
        Class updateChangeFileQuerySignal query ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   724
            chgStream := Class changesStream.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   725
            chgStream notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   726
                chgStream nextChunkPut:loggedString.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   727
                chgStream cr.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   728
                chgStream close
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   729
            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   730
        ].
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   731
    ].
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   732
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   733
    "
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   734
     during the evaluation, handle nameSpace queries
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   735
     from the value as defined by any namespace directive.
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   736
     This, if its a class definition expression, the class will
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   737
     be installed there.
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   738
    "
1152
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   739
    nameSpaceQuerySignal := Class nameSpaceQuerySignal.
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   740
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   741
    spc := parser getNameSpace.
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   742
    spc isNil ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   743
        (requestor respondsTo:#currentNameSpace) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   744
            spc := requestor currentNameSpace
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   745
        ] ifFalse:[
1152
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   746
            spc := nameSpaceQuerySignal query.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   747
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   748
    ].
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   749
1152
124b8a334e95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1149
diff changeset
   750
    nameSpaceQuerySignal answer:spc
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   751
    do:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   752
        |method|
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   753
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   754
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   755
         if compile is false, or the parse tree is that of a constant, 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   756
         or a variable, quickly return its value.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   757
         This is used for example, when reading simple objects
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   758
         via #readFrom:. 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   759
         The overhead of compiling a method is avoided in this case.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   760
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   761
        ((SuppressDoItCompilation == true)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   762
         or:[compile not 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   763
         or:[tree isConstant
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   764
         or:[tree isVariable
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   765
         or:[aStringOrStream isStream
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   766
         or:[aContext notNil]]]]]) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   767
            ^ tree evaluate
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   768
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   769
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   770
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   771
         if I am the ByteCodeCompiler,
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   772
         generate a dummy method, execute it and return the value.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   773
         otherwise, just evaluate the tree; slower, but not too bad ...
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   774
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   775
         This allows systems to be delivered without the ByteCodeCompiler,
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   776
         and still evaluate expressions 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   777
         (needed to read resource files or to process .rc files).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   778
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   779
        self == Parser ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   780
            parser evalExitBlock:[:value | parser release. ^ value].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   781
            value := tree evaluate.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   782
            parser evalExitBlock:nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   783
        ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   784
            aStringOrStream isStream ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   785
                s := parser collectedSource.  "/ does not work yet ...
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   786
            ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   787
                s := aStringOrStream
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   788
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   789
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   790
            "/ actually, its a block, to allow
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   791
            "/ easy return ...
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   792
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   793
            sReal := 'doIt ^[\' withCRs , s , '\] value' withCRs.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   794
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   795
            method := self 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   796
                    compile:sReal 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   797
                    forClass:anObject class
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   798
                    inCategory:'_temporary_' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   799
                    notifying:requestor 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   800
                    install:false 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   801
                    skipIfSame:false 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   802
                    silent:true
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   803
                    foldConstants:false.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   804
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   805
            method notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   806
                method ~~ #Error ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   807
                    "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   808
                     fake: patch the source string, to what the user expects
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   809
                     in the browser
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   810
                    "
688
4079c5dd2dca doIt method should have no emphasis
Claus Gittinger <cg@exept.de>
parents: 687
diff changeset
   811
                    method source:'       \' withCRs , s string.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   812
                    "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   813
                     dont do any just-in-time compilation on it.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   814
                    "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   815
                    method checked:true.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   816
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   817
                    value := method 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   818
                                valueWithReceiver:anObject 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   819
                                arguments:nil  "/ (Array with:m) 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   820
                                selector:#doIt "/ #doIt: 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   821
                                search:nil
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   822
                                sender:nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   823
                ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   824
                    parser evalExitBlock:[:value | parser release. ^ value].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   825
                    value := tree evaluate.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   826
                    parser evalExitBlock:nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   827
                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   828
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   829
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   830
    ].
35
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
   831
    parser release.
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
   832
    ^ value
260
b881b17d0da6 commentary
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   833
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   834
    "Created: / 8.2.1997 / 19:34:44 / cg"
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
   835
    "Modified: / 18.3.1999 / 18:25:40 / stefan"
1032
f97183aecb4e oops - super-send-doIt in a debugger used receivers class
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
   836
    "Modified: / 6.2.2000 / 15:01:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   837
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   838
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   839
evaluate:aStringOrStream logged:logged
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   840
    "return the result of evaluating an expression in aStringOrStream.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   841
     The argument log controls if an entry is added to the changeLog."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   842
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   843
    ^ self 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   844
	evaluate:aStringOrStream 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   845
	in:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   846
	receiver:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   847
	notifying:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   848
	logged:logged
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   849
	ifFail:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   850
	compile:true
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   851
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   852
     Compiler evaluate:'''some string''' logged:false   
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   853
     Compiler evaluate:'''some string''' logged:true   
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   854
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   855
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   856
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   857
evaluate:aStringOrStream notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   858
    "return the result of evaluating aString, 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   859
     errors are reported to requestor"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   860
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   861
    ^ self 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   862
	evaluate:aStringOrStream 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   863
	in:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   864
	receiver:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   865
	notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   866
	logged:false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   867
	ifFail:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   868
	compile:true
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   869
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   870
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   871
evaluate:aStringOrStream notifying:requestor compile:compile
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   872
    "return the result of evaluating aString, 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   873
     errors are reported to requestor.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   874
     The compile argument specifies if the string should be compiled down to 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   875
     bytecode or instead be interpreted from the parseTree.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   876
     The first should be done for doIts etc, where a readable walkback is
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   877
     required.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   878
     The latter is better done for constants, styleSheet and resource
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   879
     reading and simple sends, where the overhead of compilation is bigger
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   880
     than the interpretation overhead."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   881
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   882
    ^ self 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   883
	evaluate:aStringOrStream 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   884
	in:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   885
	receiver:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   886
	notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   887
	logged:false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   888
	ifFail:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   889
	compile:compile
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   890
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   891
1025
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   892
evaluate:aStringOrStream notifying:requestor logged:logged
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   893
    "return the result of evaluating aString, 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   894
     errors are reported to requestor"
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   895
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   896
    ^ self 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   897
        evaluate:aStringOrStream 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   898
        in:nil 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   899
        receiver:nil 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   900
        notifying:requestor
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   901
        logged:logged
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   902
        ifFail:nil 
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   903
        compile:true
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   904
!
5b3022ecb269 added #evaluate:notifying:logged: (for RB)
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
   905
572
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   906
evaluate:aStringOrStream receiver:anObject
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   907
    "return the result of evaluating aString, 
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   908
     errors are reported to requestor. Allow access to
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   909
     anObject as self and to its instVars "
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   910
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   911
    ^ self 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   912
	evaluate:aStringOrStream
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   913
	in:nil
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   914
	receiver:anObject
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   915
	notifying:nil
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   916
	logged:false
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   917
	ifFail:nil
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
   918
	compile:true
572
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   919
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   920
    "
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   921
     Compiler evaluate:'self x' receiver:(1 @ 2)
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   922
    "
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   923
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   924
    "Created: 1.7.1997 / 19:02:24 / cg"
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   925
    "Modified: 1.7.1997 / 19:02:33 / cg"
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   926
!
6608880c73bc added #evaluate:receiver:
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   927
919
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   928
evaluate:aStringOrStream receiver:someOne logged:logged
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   929
    "return the result of evaluating an expression in aStringOrStream.
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   930
     The argument log controls if an entry is added to the changeLog."
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   931
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   932
    ^ self 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   933
        evaluate:aStringOrStream 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   934
        in:nil 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   935
        receiver:someOne 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   936
        notifying:nil 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   937
        logged:logged
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   938
        ifFail:nil 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   939
        compile:true
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   940
    "
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   941
     Compiler evaluate:'''some string''' logged:false   
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   942
     Compiler evaluate:'''some string''' logged:true   
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   943
     Compiler evaluate:'self class' receiver:nil logged:false
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   944
     Compiler evaluate:'self class' receiver:1 logged:false 
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   945
    "
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   946
!
212f477f8d7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   947
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   948
evaluate:aStringOrStream receiver:anObject notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   949
    "return the result of evaluating aString, 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   950
     errors are reported to requestor. Allow access to
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   951
     anObject as self and to its instVars (used in the inspector)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   952
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   953
    ^ self 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   954
	evaluate:aStringOrStream
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   955
	in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   956
	receiver:anObject
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   957
	notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   958
	logged:false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   959
	ifFail:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   960
	compile:true
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   961
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   962
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   963
     Compiler evaluate:'self x' receiver:(1 @ 2) notifying:nil 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   964
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   965
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   966
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   967
evaluate:aStringOrStream receiver:anObject notifying:requestor compile:compile
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   968
    "return the result of evaluating aString, 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   969
     errors are reported to requestor. Allow access to
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   970
     anObject as self and to its instVars (used in the inspector).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   971
     The compile argument specifies if the string should be compiled down to 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   972
     bytecode or instead be interpreted from the parseTree.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   973
     The first should be done for doIts etc, where a readable walkback is
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   974
     required.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   975
     The latter is better done for constants, styleSheet and resource
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   976
     reading and simple sends, where the overhead of compilation is bigger
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   977
     than the interpretation overhead."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   978
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   979
    ^ self 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   980
	evaluate:aStringOrStream
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   981
	in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   982
	receiver:anObject
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   983
	notifying:requestor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   984
	logged:false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   985
	ifFail:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
   986
	compile:compile 
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   987
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   988
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   989
!Parser class methodsFor:'general helpers'!
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   990
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   991
argAndVarNamesForContext:aContext
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   992
    "helper: given a context, return a collection of arg&var names"
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   993
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   994
    |homeContext method numArgs numVars m src 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   995
     blockNode argNames varNames vars sel isDoIt|
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   996
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   997
    numArgs := aContext numArgs.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   998
    numVars := aContext numVars.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
   999
    (numArgs == 0 and:[numVars == 0]) ifTrue:[^ #()].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1000
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1001
    homeContext := aContext methodHome.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1002
    sel := homeContext selector.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1003
    method := homeContext method.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1004
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1005
    "/ #doIt needs special handling below
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1006
    isDoIt := (sel == #doIt) or:[sel == #doIt:].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1007
    aContext isBlockContext ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1008
        isDoIt ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1009
            method notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1010
                "/ special for #doIt
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1011
                m := nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1012
                src := ('[' , method source , '\]') withCRs.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1013
                blockNode := Compiler
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1014
                                blockAtLine:(aContext lineNumber)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1015
                                in:m
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1016
                                orSource:src
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1017
                                numArgs:numArgs 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1018
                                numVars:numVars.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1019
                blockNode notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1020
                    argNames := #().
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1021
                    varNames := #().
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1022
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1023
                    numArgs > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1024
                        vars := blockNode arguments.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1025
                        vars size > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1026
                            argNames := vars collect:[:var | var name]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1027
                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1028
                    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1029
                    numVars > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1030
                        vars := blockNode variables.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1031
                        vars size > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1032
                            varNames := vars collect:[:var | var name].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1033
                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1034
                    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1035
                    ^ argNames , varNames
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1036
                ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1037
            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1038
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1039
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1040
        method notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1041
            ^ method methodArgAndVarNames.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1042
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1043
        ^ #()
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1044
    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1045
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1046
    method notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1047
        isDoIt ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1048
            "/ special for #doIt
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1049
            "/ my source is found in the method.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1050
            m := nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1051
            src := ('[' , method source , '\]') withCRs.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1052
        ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1053
            m := method.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1054
            src := nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1055
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1056
        blockNode := Compiler
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1057
                        blockAtLine:(aContext lineNumber)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1058
                        in:m
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1059
                        orSource:src
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1060
                        numArgs:numArgs 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1061
                        numVars:numVars.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1062
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1063
        blockNode notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1064
            argNames := #().
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1065
            varNames := #().
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1066
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1067
            numArgs > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1068
                vars := blockNode arguments.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1069
                vars size > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1070
                    argNames := vars collect:[:var | var name]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1071
                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1072
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1073
            numVars > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1074
                vars := blockNode variables.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1075
                vars size > 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1076
                    varNames := vars collect:[:var | var name].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1077
                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1078
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1079
            ^ argNames , varNames
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1080
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1081
    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1082
    ^ #()
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1083
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1084
    "Created: / 17.1.1998 / 03:18:05 / cg"
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1085
    "Modified: / 17.1.1998 / 03:55:44 / cg"
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1086
! !
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  1087
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  1088
!Parser class methodsFor:'parsing'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1089
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1090
blockAtLine:line in:aMethod orSource:aString numArgs:nA numVars:nV
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1091
    "given a lineNr in some method, 
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1092
     return the containing BlockNode or nil.
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1093
     The given lineNr must be within a block for this to work.
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1094
     This is used by the debugger, to guess reverse from a lineNumber,
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1095
     to the corresponding block, in order to find out the blocks
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1096
     variable names (mhmh - all of this wasnt't needed, if blocks stored
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1097
     their characterPosition internally)."
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1098
429
ffc4e2ab5581 cleanup
Claus Gittinger <cg@exept.de>
parents: 427
diff changeset
  1099
    |compiler tree mSource who mClass blocks 
397
118267bf78e5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 391
diff changeset
  1100
     maxSoFar innerBlock m|
118267bf78e5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 391
diff changeset
  1101
481
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
  1102
    (line isNil or:[line == self maxLineNumber]) ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1103
        ^ nil
457
ad25339043ef care for nil-lineNumber when looking for a block
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1104
    ].
ad25339043ef care for nil-lineNumber when looking for a block
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1105
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1106
    aMethod notNil ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1107
        m := aMethod.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1108
        who := m who.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1109
        who isNil ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1110
            m isWrapped ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1111
                m := m wrapper.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1112
                m notNil ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1113
                    who := m who.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1114
                ]
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1115
            ]
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1116
        ].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1117
        who notNil ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1118
            mClass := who methodClass.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1119
            mClass isNil ifTrue:[ ^ nil].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1120
        ].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1121
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1122
        mSource := m source.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1123
        mSource isNil ifTrue:[^ nil].
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1124
    ] ifFalse:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1125
        aString notNil ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1126
            mSource := aString.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1127
            mClass := UndefinedObject
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1128
        ] ifFalse:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1129
            ^ nil
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1130
        ]
397
118267bf78e5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 391
diff changeset
  1131
    ].
118267bf78e5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 391
diff changeset
  1132
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1133
    "create a compiler, let it parse and create the parsetree"
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1134
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1135
    compiler := self for:(ReadStream on:mSource) in:mClass.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1136
    compiler parseForCode.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1137
    compiler notifying:nil.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1138
    compiler ignoreWarnings.
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1139
    compiler ignoreErrors.
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1140
    compiler lineNumberInfo:#full.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1141
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1142
    aMethod notNil ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1143
        (compiler parseMethodSpec == #Error) ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1144
            ^ nil.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1145
        ].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1146
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1147
        who notNil ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1148
            compiler selector ~~ (who methodSelector) ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1149
                ^ nil
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1150
            ]
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1151
        ].
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1152
    ] ifFalse:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1153
        compiler nextToken.
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1154
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1155
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1156
    tree := compiler parseMethodBody.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1157
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1158
    (compiler errorFlag 
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1159
    or:[tree == #Error
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1160
    or:[tree isNil]]) ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1161
        ^ nil
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1162
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1163
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1164
    blocks := OrderedCollection new.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1165
    tree collectBlocksInto:blocks.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1166
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1167
    blocks := blocks select:[:aBlock |
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1168
                                line between: aBlock lineNumber and:aBlock endLineNumber
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1169
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1170
                            ].
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1171
    blocks size == 1 ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1172
        ^ blocks at:1
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1173
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1174
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1175
    nA notNil ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1176
        blocks := blocks select:[:aBlock |
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1177
                                aBlock numArgs == nA
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1178
                                ].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1179
        blocks size == 1 ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1180
            ^ blocks at:1
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1181
        ].
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1182
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1183
    nV notNil ifTrue:[
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1184
        blocks := blocks select:[:aBlock |
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1185
                                aBlock numVars == nV
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1186
                                ].
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1187
        blocks size == 1 ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1188
            ^ blocks at:1
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1189
        ].
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1190
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1191
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1192
    "/ look for the inner one
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1193
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1194
    maxSoFar := 0.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1195
    blocks do:[:aBlock |
815
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1196
        aBlock lineNumber > maxSoFar ifTrue:[
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1197
            innerBlock := aBlock.
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1198
            maxSoFar := aBlock lineNumber
3be479989a99 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
  1199
        ]
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1200
    ].
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1201
    ^ innerBlock.
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1202
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1203
    "Created: 11.1.1997 / 23:29:13 / cg"
481
187a88a9695d care for maxLineNo when looking for a block-by-lineNo
Claus Gittinger <cg@exept.de>
parents: 480
diff changeset
  1204
    "Modified: 14.2.1997 / 16:51:25 / cg"
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1205
!
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1206
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1207
checkMethod:aString in:aClass ignoreErrors:noErrors ignoreWarnings:noWarnings
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1208
    "parse a method in a given class.
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1209
     Return a parser (if ok), nil (empty) or #Error (syntax).
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1210
     The parser can be queried for selector, receiver, args, locals,
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1211
     used selectors, modified instvars, referenced classvars etc.
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1212
     The noErrors and noWarnings arguments specify if error and warning 
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1213
     messages should be sent to the Transcript or suppressed."
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1214
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1215
    |parser tree|
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1216
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1217
    aString isNil ifTrue:[^ nil].
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1218
    parser := self for:(ReadStream on:aString) in:aClass.
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1219
    noErrors ifTrue:[
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1220
        parser ignoreErrors
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1221
    ].
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1222
    noWarnings ifTrue:[
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1223
        parser ignoreWarnings
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1224
    ].
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1225
    tree := parser parseMethod.
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1226
    (parser errorFlag or:[tree == #Error]) ifTrue:[^ nil].
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1227
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1228
    ReadBeforeWrittenTester searchForReadBeforeWrittenIn:tree
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1229
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1230
    "
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1231
     self
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1232
        checkMethod:'foo
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1233
                        |local1 local2 local3|
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1234
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1235
                        local1 := local2.
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1236
                        ^ local3
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1237
                    '
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1238
        in:UndefinedObject 
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1239
        ignoreErrors:true 
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1240
        ignoreWarnings:true 
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1241
    "
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1242
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1243
    "Modified: / 30.10.1997 / 16:38:31 / cg"
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1244
!
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  1245
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1246
parseExpression:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1247
    "parse aString as an expression; 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1248
     Return the parseTree (if ok), nil (for an empty string 
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1249
     or comment only) or #Error (syntactic error).
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1250
     Error and warning messages are suppressed."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1251
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1252
    ^ self 
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1253
        withSelf:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1254
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1255
        onError:#Error
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1256
        notifying:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1257
        ignoreErrors:true       "silence on Transcript"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1258
        ignoreWarnings:true
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1259
        inNameSpace:nil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1260
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1261
    "
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1262
     Parser parseExpression:'self foo'
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1263
     Parser parseExpression:'self:123'
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1264
     Parser parseExpression:'self:123' onError:nil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1265
    "
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1266
!
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1267
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1268
parseExpression:aString inNameSpace:aNameSpaceOrNil
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1269
    "parse aString as an expression; 
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1270
     Return the parseTree (if ok), nil (for an empty string 
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1271
     or comment only) or #Error (syntactic error).
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1272
     Error and warning messages are suppressed."
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1273
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1274
    ^ self 
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1275
        withSelf:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1276
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1277
        onError:#Error
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1278
        notifying:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1279
        ignoreErrors:true       "silence on Transcript"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1280
        ignoreWarnings:true
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1281
        inNameSpace:aNameSpaceOrNil
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1282
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1283
    "Modified: 24.6.1997 / 16:44:00 / cg"
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1284
    "Created: 24.6.1997 / 16:44:26 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1285
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1286
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1287
parseExpression:aString inNameSpace:aNameSpaceOrNil onError:errorValue
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1288
    "parse aString as an expression; 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1289
     Return the parseTree (if ok), nil (for an empty string 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1290
     or comment only) or errorValue (syntactic error).
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1291
     Error and warning messages are suppressed."
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1292
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1293
    ^ self 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1294
        withSelf:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1295
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1296
        onError:errorValue
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1297
        notifying:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1298
        ignoreErrors:true       "silence on Transcript"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1299
        ignoreWarnings:true
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1300
        inNameSpace:aNameSpaceOrNil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1301
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1302
    "Modified: 24.6.1997 / 16:44:00 / cg"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1303
    "Created: 24.6.1997 / 16:44:26 / cg"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1304
!
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1305
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1306
parseExpression:aString onError:errorValue
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1307
    "parse aString as an expression; 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1308
     Return the parseTree (if ok), nil (for an empty string 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1309
     or comment only) or errorValue (syntactic error).
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1310
     Error and warning messages are suppressed."
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1311
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1312
    ^ self 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1313
        withSelf:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1314
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1315
        onError:errorValue
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1316
        notifying:nil 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1317
        ignoreErrors:true       "silence on Transcript"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1318
        ignoreWarnings:true
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1319
        inNameSpace:nil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1320
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1321
    "Modified: 24.6.1997 / 16:44:00 / cg"
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1322
!
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1323
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1324
parseMethod:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1325
    "parse a method.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1326
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1327
     The parser can be queried for selector, receiver, args, locals,
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1328
     used selectors etc.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1329
     Error and warning messages are sent to the Transcript."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1330
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1331
    ^ self parseMethod:aString in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1332
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1333
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1334
     |p|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1335
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1336
     p := Parser 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1337
	     parseMethod:'
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1338
		 foo:arg1 bar:arg2 baz:arg3 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1339
		     |l1 l2| 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1340
		     l1 := 0. 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1341
		     l2 := arg1. 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1342
		     ^ self'.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1343
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1344
     'nArgs:  ' print. p numberOfMethodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1345
     'args:   ' print. p methodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1346
     'sel:    ' print. p selector printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1347
     'nLocal: ' print. p numberOfMethodVars printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1348
     'locals: ' print. p methodVars printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1349
     'tree:   ' printNL. p tree printAllOn:Stdout. Stdout cr.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1350
    "
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1351
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1352
    "Modified: 24.4.1996 / 13:18:02 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1353
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1354
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1355
parseMethod:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1356
    "parse a method in a given class.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1357
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1358
     The parser can be queried for selector, receiver, args, locals,
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1359
     used selectors, modified instvars, referenced classvars etc.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1360
     Error and warning messages are sent to the Transcript."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1361
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1362
    ^ self 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1363
	parseMethod:aString 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1364
	in:aClass 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1365
	ignoreErrors:false 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1366
	ignoreWarnings:false
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1367
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1368
    "Modified: 24.4.1996 / 13:18:34 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1369
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1370
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1371
parseMethod:aString in:aClass ignoreErrors:noErrors ignoreWarnings:noWarnings
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1372
    "parse a method in a given class.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1373
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1374
     The parser can be queried for selector, receiver, args, locals,
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1375
     used selectors, modified instvars, referenced classvars etc.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1376
     The noErrors and noWarnings arguments specify if error and warning 
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1377
     messages should be sent to the Transcript or suppressed."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1378
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1379
    |parser tree|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1380
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1381
    aString isNil ifTrue:[^ nil].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1382
    parser := self for:(ReadStream on:aString) in:aClass.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1383
    noErrors ifTrue:[
1091
0c8426791571 debug code (disabled)
Claus Gittinger <cg@exept.de>
parents: 1090
diff changeset
  1384
        parser ignoreErrors
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1385
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1386
    noWarnings ifTrue:[
1091
0c8426791571 debug code (disabled)
Claus Gittinger <cg@exept.de>
parents: 1090
diff changeset
  1387
        parser ignoreWarnings
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1388
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1389
    tree := parser parseMethod.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1390
    (parser errorFlag or:[tree == #Error]) ifTrue:[^ nil].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1391
    ^ parser
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1392
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1393
    "Modified: 24.4.1996 / 13:19:23 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1394
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1395
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1396
parseMethod:aString in:aClass warnings:warnBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1397
    "parse a method in a given class.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1398
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1399
     The parser can be queried for selector, receiver, args, locals,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1400
     used selectors, modified instvars, referenced classvars etc.
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1401
     The warnBoolean arguments specifies if warning 
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1402
     messages should be sent to the Transcript or suppressed.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1403
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1404
     This method is OBSOLETE, and left in for backward compatibility."
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1405
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1406
    self obsoleteMethodWarning.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1407
    ^ self
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1408
	parseMethod:aString 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1409
	in:aClass 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1410
	ignoreErrors:false 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1411
	ignoreWarnings:warnBoolean not
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1412
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1413
    "Modified: 24.4.1996 / 13:28:05 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1414
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1415
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1416
parseMethodArgAndVarSpecification:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1417
    "parse a methods selector, arg and var spec (i.e. locals);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1418
     Return a parser (if ok), nil (empty) or #Error (syntax).
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1419
     The parser can be queried for selector, receiver etc.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1420
     Error and warning messages are sent to the Transcript.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1421
     This method is OBSOLETE."
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1422
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1423
    self obsoleteMethodWarning.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1424
    ^ self parseMethodArgAndVarSpecification:aString in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1425
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1426
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1427
     |p|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1428
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1429
     p := Parser 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1430
	     parseMethodArgAndVarSpecification:'
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1431
		      foo:arg1 bar:arg2 baz:arg3 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1432
		      |l1 l2|'.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1433
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1434
     'nArgs:  ' print. p numberOfMethodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1435
     'args:   ' print. p methodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1436
     'sel:    ' print. p selector printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1437
     'nLocal: ' print. p numberOfMethodVars printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1438
     'locals: ' print. p methodVars printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1439
    "
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1440
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1441
    "Modified: 24.4.1996 / 13:29:43 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1442
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1443
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1444
parseMethodArgAndVarSpecification:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1445
    "parse a methods selector, arg and var spec in a given class;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1446
     Return a parser (if ok), nil (empty) or #Error (syntax).
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1447
     The parser can be queried for selector, receiver, args and locals.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1448
     Error and warning messages are sent to the Transcript.
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1449
     This method is OBSOLETE."
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1450
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1451
    self obsoleteMethodWarning.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1452
    ^ self parseMethodArgAndVarSpecification:aString 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1453
	   in:aClass 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1454
	   ignoreErrors:false
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1455
	   ignoreWarnings:false 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1456
	   parseBody:false
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1457
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1458
    "Modified: 24.4.1996 / 13:30:03 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1459
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1460
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1461
parseMethodArgAndVarSpecification:aString in:aClass ignoreErrors:noErrors ignoreWarnings:noWarnings parseBody:body
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1462
    "parse a methods selector, arg and var spec in a given class;
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1463
     If parseBody is true, also parse the statements 
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1464
     (for primitives & resourceSpecs).
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1465
     The noErrors and noWarnings arguments specify if error and warning 
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1466
     messages should be sent to the Transcript or suppressed.
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1467
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1468
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1469
     The parser can be queried for selector, receiver, args and locals"
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  1470
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1471
    |parser|
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1472
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1473
    aString isNil ifTrue:[^ nil].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1474
    parser := self for:(ReadStream on:aString) in:aClass.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1475
    noErrors ifTrue:[
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  1476
        parser ignoreErrors
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1477
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1478
    noWarnings ifTrue:[
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  1479
        parser ignoreWarnings
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1480
    ].
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1481
"/    parser nextToken.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1482
    (parser parseMethodSpec == #Error) ifTrue:[^ nil].
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1483
    "/
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1484
    "/ used to be #parseMethodBodyVarSpec
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1485
    "/ - now, alternatively parse body for resource & primitive specs ..
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1486
    "/
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1487
    body ifTrue:[
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  1488
        parser parseMethodBodyOrEmpty
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1489
    ] ifFalse:[
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  1490
        parser parseMethodBodyVarSpec
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1491
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1492
    parser errorFlag ifTrue:[^ nil].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1493
    ^ parser
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1494
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1495
    "Created: 24.4.1996 / 13:13:06 / cg"
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  1496
    "Modified: 27.4.1996 / 16:58:02 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1497
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1498
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1499
parseMethodArgAndVarSpecificationSilent:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1500
    "parse a methods selector, arg and var spec (i.e. locals);
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1501
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1502
     The parser can be queried for selector, receiver etc.
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1503
     Like #parseMethodArgAndVarSpecification:, but does NOT
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1504
     display error/warning messages on the transcript."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1505
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1506
    ^ self parseMethodArgAndVarSpecificationSilent:aString in:nil
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1507
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1508
    "Modified: 24.4.1996 / 13:30:54 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1509
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1510
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1511
parseMethodArgAndVarSpecificationSilent:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1512
    "parse a methods selector, arg and var spec in a given class;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1513
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1514
     The parser can be queried for selector, receiver, args and locals.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1515
     Like #parseMethodArgAndVarSpecification:in:, but does not
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1516
     display error/warning messages on the transcript."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1517
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1518
    ^ self parseMethodArgAndVarSpecification:aString 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1519
	   in:aClass 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1520
	   ignoreErrors:true 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1521
	   ignoreWarnings:true 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1522
	   parseBody:false
257
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1523
435dcaed969f dont parse body (when interrested in args & locals only)
Claus Gittinger <cg@exept.de>
parents: 255
diff changeset
  1524
    "Modified: 24.4.1996 / 13:14:27 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1525
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1526
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1527
parseMethodSilent:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1528
    "parse a method.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1529
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1530
     The parser can be queried for selector, receiver, args, locals,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1531
     used selectors etc.
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1532
     Like #parseMethod:, but warning/error messages are suppressed."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1533
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1534
    ^ self parseMethodSilent:aString in:nil
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1535
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1536
    "Modified: 24.4.1996 / 13:32:44 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1537
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1538
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1539
parseMethodSilent:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1540
    "parse a method in a given class.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1541
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1542
     The parser can be queried for selector, receiver, args, locals,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1543
     used selectors, modified instvars, referenced classvars etc.
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1544
     Like #parseMethod:in:, but warning/error messages are suppressed."
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1545
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1546
    ^ self 
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1547
	parseMethod:aString 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1548
	in:aClass 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1549
	ignoreErrors:true 
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1550
	ignoreWarnings:true
258
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1551
8de94646c647 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  1552
    "Modified: 24.4.1996 / 13:32:57 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1553
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1554
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1555
parseMethodSpecification:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1556
    "parse a methods selector & arg specification; 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1557
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1558
     The parser can be queried for selector, receiver etc."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1559
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1560
    ^ self parseMethodSpecification:aString in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1561
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1562
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1563
     |p|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1564
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1565
     p := Parser parseMethodSpecification:'foo:arg1 bar:arg2 baz:arg3'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1566
     'nArgs: ' print. p numberOfMethodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1567
     'args:  ' print. p methodArgs printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1568
     'sel:   ' print. p selector printNL
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1569
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1570
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1571
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1572
parseMethodSpecification:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1573
    "parse a methods selector & arg spec for a given class;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1574
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1575
     The parser can be queried for selector, receiver etc."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1576
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1577
    ^ self parseMethodSpecification:aString 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1578
	   in:aClass 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1579
	   ignoreErrors:false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1580
	   ignoreWarnings:false 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1581
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1582
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1583
parseMethodSpecification:aString in:aClass ignoreErrors:noErrors ignoreWarnings:noWarnings 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1584
    "parse a methods selector & arg spec for a given class;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1585
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1586
     The parser can be queried for selector, receiver etc.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1587
     noErrors and noWarnings specify if error- and warningMessages are
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1588
     to be output onto the Transcript."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1589
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1590
    |parser tree|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1591
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1592
    aString isNil ifTrue:[^ nil].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1593
    parser := self for:(ReadStream on:aString) in:aClass.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1594
    noErrors ifTrue:[
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1595
	parser ignoreErrors
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1596
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1597
    noWarnings ifTrue:[
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  1598
	parser ignoreWarnings
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1599
    ].
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1600
"/    parser nextToken.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1601
    tree := parser parseMethodSpec.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1602
    (parser errorFlag or:[tree == #Error]) ifTrue:[^ #Error].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1603
    ^ parser
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1604
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1605
    "Modified: 20.4.1996 / 20:09:48 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1606
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1607
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1608
parseMethodSpecificationSilent:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1609
    "parse a methods selector & arg specification; 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1610
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1611
     The parser can be queried for selector, receiver etc.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1612
     Like #parseMethodSpecification:, but does not display any error/warning Messages on the transcript."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1613
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1614
    ^ self parseMethodSpecificationSilent:aString in:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1615
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1616
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1617
parseMethodSpecificationSilent:aString in:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1618
    "parse a methods selector & arg spec for a given class;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1619
     Return a parser (if ok), nil (empty) or #Error (syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1620
     The parser can be queried for selector, receiver etc.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1621
     Like #parseMethodSpecification:in:, but does not display any error/warning Messages on the transcript."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1622
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1623
    ^ self parseMethodSpecification:aString 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1624
	   in:aClass 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1625
	   ignoreErrors:true 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1626
	   ignoreWarnings:true
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1627
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1628
    "Created: 31.10.1995 / 14:37:49 / cg"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1629
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1630
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1631
selectorInExpression:aString
47
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1632
    "parse an expression - return the selector. Even malformed expressions
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1633
     (such as missing receiver or missing arg are parsed.
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1634
     Used for the SystemBrowsers implementors/senders query-box initial text.
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1635
     Returns nil if unparsable."
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1636
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1637
    |tree parser|
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1638
813
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1639
    (aString size == 0) ifTrue:[^ nil].
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1640
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1641
    tree := self withSelf:nil 
813
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1642
                 parseExpression:aString 
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1643
                 notifying:nil 
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1644
                 ignoreErrors:true 
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1645
                 ignoreWarnings:true. 
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1646
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1647
    "
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1648
     special: take the expression of the right side, if its an
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1649
     assignment or return
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1650
    "
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1651
    (tree notNil and:[tree ~~ #Error]) ifTrue:[
813
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1652
        (tree isAssignment 
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1653
        or:[tree isReturnNode]) ifTrue:[
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1654
            tree expression isMessage ifTrue:[
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1655
                tree := tree expression
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1656
            ]
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1657
        ].
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1658
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1659
        tree isMessage ifTrue:[
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1660
            ^ tree selector
4d3ec8ff238c (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1661
        ].
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1662
    ].
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1663
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1664
    "
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1665
     mhmh, try expression without receiver
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1666
    "
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1667
    parser := self for:(ReadStream on:aString).
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1668
    parser ignoreErrors.
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1669
    parser nextToken.
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1670
    ^ parser degeneratedKeywordExpressionForSelector
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1671
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1672
"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1673
    Parser selectorInExpression:'foo at:1 put:(5 * bar)'     
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1674
    Parser selectorInExpression:'(foo at:1) at:1'           
47
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1675
    Parser selectorInExpression:'a + 4'                     
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1676
    Parser selectorInExpression:'a negated'                 
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1677
    Parser selectorInExpression:'at:1 put:5'            
47
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1678
    Parser selectorInExpression:'at:1 put:'            
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1679
    Parser selectorInExpression:'a at:1 put:5'            
f861ad42703e *** empty log message ***
claus
parents: 45
diff changeset
  1680
    Parser selectorInExpression:'a at:1 put:'            
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1681
    Parser selectorInExpression:'a := foo at:1 put:5'    
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1682
"
451
9e116ffc172c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1683
9e116ffc172c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  1684
    "Modified: 17.12.1996 / 12:12:47 / cg"
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1685
!
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1686
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1687
withSelf:anObject parseExpression:aString notifying:someOne 
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1688
    "parse aString as an expression with self set to anObject;
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1689
     Return the parseTree (if ok), nil (for an empty string 
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1690
     or comment only ) or #Error (syntactic error).
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1691
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1692
     Errors and warnings are forwarded to someOne (usually some
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1693
     codeView) which can highlight it and show a popup box."
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1694
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1695
    ^ self 
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1696
        withSelf:anObject 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1697
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1698
        onError:#Error
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1699
        notifying:someOne 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1700
        ignoreErrors:false 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1701
        ignoreWarnings:false 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1702
        inNameSpace:nil
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1703
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1704
    "Modified: 24.6.1997 / 16:43:37 / cg"
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1705
!
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1706
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  1707
withSelf:anObject parseExpression:aString notifying:someOne ignoreErrors:ignore
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1708
    "parse aString as an expression with self set to anObject;
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1709
     Return the parseTree (if ok), nil (for an empty string 
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1710
     or comment only ) or #Error (syntactic error).
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1711
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1712
     Errors and warnings are forwarded to someOne (usually some
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1713
     codeView) which can highlight it and show a popup box."
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1714
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1715
    ^ self 
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1716
        withSelf:anObject
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1717
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1718
        onError:#Error
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1719
        notifying:someOne 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1720
        ignoreErrors:ignore 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1721
        ignoreWarnings:ignore 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1722
        inNameSpace:nil
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1723
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1724
    "Modified: 24.6.1997 / 16:43:26 / cg"
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1725
!
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1726
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1727
withSelf:anObject parseExpression:aString notifying:someOne ignoreErrors:ignoreErrors ignoreWarnings:ignoreWarnings
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1728
    "parse aString as an expression with self set to anObject;
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1729
     Return the parseTree (if ok), nil (for an empty string 
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1730
     or comment only ) or #Error (syntactic error).
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1731
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1732
     Errors and warnings are forwarded to someOne (usually some
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1733
     codeView) which can highlight it and show a popup box,
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1734
     iff ignoreErrors/ignoreWarnings is true respectively."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1735
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1736
    ^ self
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1737
        withSelf:anObject 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1738
        parseExpression:aString
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1739
        onError:#Error
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1740
        notifying:someOne 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1741
        ignoreErrors:ignoreErrors 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1742
        ignoreWarnings:ignoreWarnings 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1743
        inNameSpace:nil
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1744
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1745
    "Modified: 24.6.1997 / 16:43:12 / cg"
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1746
!
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1747
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1748
withSelf:anObject parseExpression:aString notifying:someOne ignoreErrors:ignoreErrors ignoreWarnings:ignoreWarnings inNameSpace:aNameSpaceOrNil
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1749
    "parse aString as an expression with self set to anObject;
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1750
     Return the parseTree (if ok), nil (for an empty string 
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1751
     or comment only ) or #Error (syntactic error).
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1752
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1753
     Errors and warnings are forwarded to someOne (usually some
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1754
     codeView) which can highlight it and show a popup box,
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1755
     iff ignoreErrors/ignoreWarnings is true respectively."
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1756
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1757
    ^ self
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1758
        withSelf:anObject 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1759
        parseExpression:aString 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1760
        onError:#Error 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1761
        notifying:someOne 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1762
        ignoreErrors:ignoreErrors 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1763
        ignoreWarnings:ignoreWarnings 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1764
        inNameSpace:aNameSpaceOrNil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1765
!
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1766
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1767
withSelf:anObject parseExpression:aString onError:errorValue notifying:someOne ignoreErrors:ignoreErrors ignoreWarnings:ignoreWarnings inNameSpace:aNameSpaceOrNil
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1768
    "parse aString as an expression with self set to anObject;
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1769
     Return the parseTree (if ok), nil (for an empty string 
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1770
     or comment only ) or errorValue (syntactic error).
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1771
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1772
     Errors and warnings are forwarded to someOne (usually some
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1773
     codeView) which can highlight it and show a popup box,
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1774
     iff ignoreErrors/ignoreWarnings is true respectively."
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1775
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1776
    |parser tree|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1777
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1778
    aString isNil ifTrue:[^ nil].
548
79948fed91a7 added entry to parse an expression in a specific nameSpace
Claus Gittinger <cg@exept.de>
parents: 547
diff changeset
  1779
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1780
    parser := self for:(ReadStream on:aString).
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1781
    tree := parser 
1006
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1782
        parseExpressionWithSelf:anObject 
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1783
        notifying:someOne 
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1784
        ignoreErrors:ignoreErrors 
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1785
        ignoreWarnings:ignoreWarnings 
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1786
        inNameSpace:aNameSpaceOrNil.
1096
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1787
    tree == #Error ifTrue:[
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1788
        ^ errorValue value
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1789
    ].
d1d897aba4d5 added #parseExpression:onError: protocol.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1790
    ^ tree
1006
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1791
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  1792
    "Modified: / 14.12.1999 / 15:12:16 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1793
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1794
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  1795
!Parser class methodsFor:'unparsing'!
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1796
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1797
methodSpecificationForSelector:aSelector
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1798
    "given a selector such as #foo:bar:, return a string that could
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1799
     serve as a methods specification source code.
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1800
     To be used for code generators"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1801
807
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1802
    |argNames n|
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1803
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1804
    n := aSelector numArgs.
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1805
    n == 1 ifTrue:[
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1806
        argNames := #('arg')
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1807
    ] ifFalse:[
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1808
        n <= 15 ifTrue:[
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1809
            argNames := #('arg1' 'arg2' 'arg3' 'arg4' 'arg5' 'arg6'
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1810
                          'arg7' 'arg8' 'arg9' 'arg10' 'arg11' 'arg12'
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1811
                          'arg13' 'arg14' 'arg15')
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1812
        ] ifFalse:[
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1813
            argNames := (1 to:aSelector numArgs) collect:[:i | 'arg' , i printString].
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1814
        ].
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1815
    ].
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1816
    ^ self methodSpecificationForSelector:aSelector argNames:argNames
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1817
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1818
    "
807
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1819
     Parser methodSpecificationForSelector:#foo:   
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1820
     Parser methodSpecificationForSelector:#foo:bar:   
807
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1821
     Parser methodSpecificationForSelector:#foo:bar:baz:   
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  1822
     Parser methodSpecificationForSelector:#+       
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1823
     Parser methodSpecificationForSelector:#negated   
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1824
    "
807
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1825
8434698556de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 806
diff changeset
  1826
    "Modified: / 12.2.1999 / 13:12:44 / cg"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1827
!
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1828
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1829
methodSpecificationForSelector:aSelector argNames:argNames
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1830
    "given a selector such as #foo:bar:, return a string that could
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1831
     serve as a methods specification source code.
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1832
     To be used for code generators"
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1833
806
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1834
    |s nargs parts part|
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1835
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1836
    s := WriteStream on:String new.
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1837
    nargs := aSelector numArgs.
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1838
    nargs == 0 ifTrue:[
806
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1839
        s nextPutAll:aSelector
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1840
    ] ifFalse:[
806
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1841
        parts := aSelector partsIfSelector.
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1842
        1 to:nargs do:[:i |
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1843
            part := parts at:i.
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1844
            s nextPutAll:part.
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1845
            (part endsWith:$:) ifFalse:[
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1846
                s space.
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1847
            ].
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1848
            s nextPutAll:(argNames at:i).
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1849
            i ~~ nargs ifTrue:[s space].
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1850
        ]
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1851
    ].
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1852
    ^ s contents
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1853
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1854
    "
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1855
     Parser methodSpecificationForSelector:#foo:bar: argNames:#('one' 'two' 'three')  
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1856
     Parser methodSpecificationForSelector:#+ argNames:#('one')  
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1857
     Parser methodSpecificationForSelector:#negated   
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1858
    "
806
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1859
bbfd3018e32e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 805
diff changeset
  1860
    "Modified: / 12.2.1999 / 12:33:50 / cg"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1861
! !
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
  1862
1020
7f52741f59dc category renamining
Claus Gittinger <cg@exept.de>
parents: 1008
diff changeset
  1863
!Parser methodsFor:'Compatibility - ST80'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1864
918
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1865
evaluate:aString in:aClassOrContext to:to notifying:aRequestor ifFail:failBlock
35
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
  1866
    |parseTree value|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1867
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1868
    aString isNil ifTrue:[^ nil].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1869
    self initializeFor:(ReadStream on:aString).
918
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1870
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1871
    "/ stupid - there seem to be differences among the various
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1872
    "/ ST dialects ...
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1873
    aClassOrContext isBehavior ifTrue:[
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1874
        self setClassToCompileFor:aClassOrContext.
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1875
        selfValue := nil.
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1876
    ] ifFalse:[
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1877
        self setContext:aClassOrContext.
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1878
        aClassOrContext notNil ifTrue:[
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1879
            self setSelf:(aClassOrContext receiver)
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1880
        ].
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1881
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1882
    requestor := aRequestor.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1883
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1884
    self nextToken.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1885
    parseTree := self parseMethodBody.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1886
    (errorFlag or:[tree == #Error]) ifTrue:[^ #Error].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1887
    parseTree notNil ifTrue:[
918
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1888
        self evalExitBlock:[:value | ^ failBlock value].
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1889
        value := parseTree evaluate
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1890
    ].
35
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
  1891
    self release.
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
  1892
    ^ value
547
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1893
!
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1894
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1895
parse:methodSource in:aClass notifying:aRequestor
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1896
    "parse a methods source.
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1897
     Return the methods parseTree"
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1898
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1899
    self initializeFor:methodSource.
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1900
    classToCompileFor := aClass.
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1901
    requestor := aRequestor.
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1902
    self parseMethod.
918
e088f51a649e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
  1903
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1904
    ^ MethodNode new
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1905
        selector:selector
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1906
        arguments:methodArgs
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1907
        locals:methodVars
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1908
        statements:tree
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1909
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1910
    "Created: 17.10.1997 / 12:35:01 / cg"
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1911
    "Modified: 17.10.1997 / 12:40:34 / cg"
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1912
!
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1913
547
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1914
parseSelector:aStringOrStream
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1915
    "parse a methods source for the methods selector.
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1916
     Return the selector"
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1917
547
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1918
    self initializeFor:aStringOrStream.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1919
    self parseMethodSpec.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1920
    ^ selector.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1921
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1922
    "
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1923
     Parser new
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1924
        parseSelector:'
547
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1925
parseSelector:aStringOrStream
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1926
    self initializeFor:aStringOrStream.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1927
    self parseMethodSpec.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1928
    ^ selector.
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1929
'                 
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1930
    "
5a51414daf36 added #parseSelector for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 541
diff changeset
  1931
624
e71abe9654e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 619
diff changeset
  1932
    "Modified: 17.10.1997 / 12:35:46 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1933
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1934
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1935
!Parser methodsFor:'accessing'!
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1936
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1937
correctedSource
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1938
    ^ correctedSource
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1939
!
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  1940
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1941
errorFlag
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1942
    "return true if there where any errors (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1943
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1944
    ^ errorFlag
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1945
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1946
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1947
evalExitBlock:aBlock
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1948
    "when evaluating a return expression, this block is evaluated"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1949
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1950
    evalExitBlock := aBlock
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1951
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1952
427
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1953
getNameSpace
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1954
    "retrieve the nameSpace, as found in a Namespace directive"
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1955
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1956
    ^ currentNamespace
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1957
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1958
    "Modified: 8.11.1996 / 13:45:35 / cg"
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1959
!
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1960
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  1961
primitiveNumber
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  1962
    "return the ST-80 style primitiveNumber or nil (valid after parsing)"
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  1963
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  1964
    ^ primitiveNr
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1965
!
97
claus
parents: 96
diff changeset
  1966
285
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1967
primitiveResources
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1968
    "return the ST-80 style resource info or nil (valid after parsing)."
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1969
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1970
    ^ primitiveResource
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1971
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1972
    "Created: 29.5.1996 / 17:28:00 / cg"
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1973
!
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  1974
35
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
  1975
release
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  1976
    methodArgs := methodVars := tree := selfNode := superNode := nilNode := nil.
35
2884eed75e2a logging doits.
claus
parents: 23
diff changeset
  1977
    super release.
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  1978
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  1979
    "Modified: / 31.3.1998 / 19:45:58 / cg"
90
claus
parents: 87
diff changeset
  1980
!
claus
parents: 87
diff changeset
  1981
427
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1982
setNameSpace:aNameSpaceName
1041
98fa50f8353f renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  1983
    currentNamespace := NameSpace fullName:aNameSpaceName
427
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1984
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1985
    "Modified: 8.11.1996 / 13:43:14 / cg"
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1986
!
3d6a4d002824 pass remembered nameSpace back from upQueries
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1987
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1988
targetClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1989
    ^ classToCompileFor
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1990
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1991
90
claus
parents: 87
diff changeset
  1992
targetClass:aClass
117
claus
parents: 103
diff changeset
  1993
    classToCompileFor := aClass
claus
parents: 103
diff changeset
  1994
!
claus
parents: 103
diff changeset
  1995
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1996
tree
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1997
    "return the parsetree"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1998
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  1999
    ^tree
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2000
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2001
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2002
tree:aTree
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2003
    "private: set the tree - for internal use only"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2004
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2005
    tree := aTree
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2006
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2007
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2008
!Parser methodsFor:'dummy - syntax detection'!
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2009
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2010
markArgumentIdentifierFrom:pos1 to:pos2
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2011
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2012
    "Created: / 31.3.1998 / 13:22:15 / cg"
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2013
!
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2014
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2015
markBadIdentifierFrom:pos1 to:pos2
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2016
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2017
    "Modified: / 31.3.1998 / 19:16:26 / cg"
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2018
    "Created: / 31.3.1998 / 19:35:53 / cg"
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2019
!
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  2020
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2021
markBooleanConstantFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2022
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2023
    "Created: / 31.3.1998 / 18:06:22 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2024
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2025
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  2026
markBracketAt:pos
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  2027
!
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  2028
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2029
markConstantFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2030
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2031
    "Created: / 31.3.1998 / 18:06:24 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2032
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2033
822
a773bb72cbd6 added extra globalClassIdentifierColor & emphasis
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
  2034
markGlobalClassIdentifierFrom:pos1 to:pos2
a773bb72cbd6 added extra globalClassIdentifierColor & emphasis
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
  2035
a773bb72cbd6 added extra globalClassIdentifierColor & emphasis
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
  2036
    "Created: / 4.3.1999 / 12:52:45 / cg"
a773bb72cbd6 added extra globalClassIdentifierColor & emphasis
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
  2037
!
a773bb72cbd6 added extra globalClassIdentifierColor & emphasis
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
  2038
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2039
markGlobalIdentifierFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2040
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2041
    "Created: / 31.3.1998 / 15:29:39 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2042
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2043
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2044
markHereFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2045
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2046
    "Created: / 31.3.1998 / 17:39:01 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2047
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2048
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2049
markIdentifierFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2050
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2051
    "Created: / 31.3.1998 / 18:06:17 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2052
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2053
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2054
markInstVarIdentifierFrom:pos1 to:pos2
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2055
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2056
    "Created: / 16.4.1998 / 18:34:10 / cg"
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2057
!
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2058
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2059
markLocalIdentifierFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2060
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2061
    "Created: / 31.3.1998 / 15:29:35 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2062
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2063
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2064
markMethodSelectorFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2065
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2066
    "Modified: / 31.3.1998 / 13:30:09 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2067
    "Created: / 31.3.1998 / 16:39:44 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2068
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2069
837
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  2070
markReturnAt:pos
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  2071
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  2072
    "Created: / 5.1.1980 / 00:48:24 / cg"
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  2073
!
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  2074
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2075
markSelector:sel from:pos1 to:pos2 receiverNode:aNode
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2076
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2077
    "Created: / 31.3.1998 / 13:22:15 / cg"
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2078
    "Modified: / 31.3.1998 / 13:30:09 / cg"
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2079
!
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  2080
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2081
markSelfFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2082
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2083
    "Created: / 31.3.1998 / 17:49:38 / cg"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2084
!
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2085
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2086
markSuperFrom:pos1 to:pos2
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2087
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  2088
    "Created: / 31.3.1998 / 17:40:20 / cg"
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2089
!
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2090
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2091
markUnknownIdentifierFrom:pos1 to:pos2
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2092
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2093
    "Modified: / 31.3.1998 / 19:16:26 / cg"
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  2094
    "Created: / 31.3.1998 / 19:35:53 / cg"
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2095
!
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2096
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2097
markVariable:v
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2098
    "support for syntaxColoring"
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2099
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2100
    "Modified: / 16.4.1998 / 18:47:45 / cg"
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2101
!
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2102
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2103
markVariable:v from:pos1 to:pos2
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2104
    "support for syntaxColoring"
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2105
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2106
    "Modified: / 16.4.1998 / 18:47:45 / cg"
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  2107
    "Created: / 16.4.1998 / 18:50:03 / cg"
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2108
! !
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  2109
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2110
!Parser methodsFor:'error correction'!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2111
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2112
askForCorrection:aString fromList:aList
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2113
    "launch a selection box, which allows user to enter correction.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2114
     return newString or nil (for abort)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2115
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2116
    |box|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2117
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2118
    "in systems without widgets ..."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2119
    ListSelectionBox isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2120
	^ self confirm:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2121
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2122
    box := ListSelectionBox title:aString.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2123
    box initialText:(aList at:1).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2124
    box list:aList.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2125
    box okText:'correct'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2126
    box action:[:aString | ^ aString].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2127
    box showAtPointer.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2128
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2129
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2130
1186
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2131
checkForEndOfInput
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2132
    (tokenType ~~ #EOF) ifTrue:[
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2133
        self parseError:'nothing more expected here' position:tokenPosition to:tokenPosition.
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2134
    ].
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2135
!
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  2136
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2137
checkSelector:selector inClass:cls
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2138
    "check wether a method with selector exists in class cls an
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2139
     that the methos is not obsolete.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2140
     Return an error string on error or nil on success"
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2141
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2142
    |err mthd implementor|
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2143
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2144
    mthd := cls lookupMethodFor:selector.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2145
    mthd isNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2146
        "if it implements #doesNotUnderstand somewhere, assume it is ok"
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2147
        implementor := cls whichClassIncludesSelector:#doesNotUnderstand:.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2148
        (implementor isNil or:[implementor == Object]) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2149
            err := 'is not implemented'
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2150
        ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2151
    ] ifFalse:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2152
        mthd isObsolete ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2153
            err := 'is deprecated'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2154
        ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2155
    ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2156
    ^ err.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2157
!
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2158
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2159
correctByDeleting
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2160
    "correct (by deleting token) if user wants to;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2161
     return #Error if there was no correction;
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2162
     nil if there was one."
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2163
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2164
    |selectionSize|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2165
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2166
    (self confirm:'confirm deleting') ifFalse:[^ #Error].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2167
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2168
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2169
     tell requestor (i.e. CodeView) about the change
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2170
     this will update what the requestor shows.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2171
    "
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2172
    selectionSize := requestor selection size.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2173
    requestor deleteSelection.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2174
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2175
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2176
     get the updated source-string 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2177
     which is needed, when we eventually install the new method
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2178
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2179
    correctedSource := requestor currentSourceCode.
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2180
    "/ update the current source position
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2181
    source := (ReadStream on:correctedSource)
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2182
                  position:(source position - selectionSize).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2183
    ^ nil
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2184
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2185
    "Modified: / 22.1.1998 / 16:39:11 / stefan"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2186
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2187
1156
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2188
correctSelector:aSelectorString message:msg position:pos1 to:pos2 in:aClassOrNil for:receiverNode
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2189
    "notify error and correct if user wants to;
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2190
     return #Error if there was no correction 
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2191
     or a ParseNode as returned by variable"
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2192
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2193
    |correctIt suggestedNames newSelector className classToGenerateCode|
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2194
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2195
    alreadyWarnedUnimplementedSelectors isNil ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2196
        alreadyWarnedUnimplementedSelectors := Set new
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2197
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2198
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2199
    (alreadyWarnedUnimplementedSelectors includes:aSelectorString) ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2200
        ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2201
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2202
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2203
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2204
     sorry, but I cannot handle keywords with more than one-part
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2205
     currently (too much work - maybe Ill do it later when everything else works :-)
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2206
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2207
    (aSelectorString occurrencesOf:$:) > 1 ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2208
        self warning:msg position:pos1 to:pos2.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2209
        alreadyWarnedUnimplementedSelectors add:aSelectorString.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2210
        ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2211
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2212
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2213
    correctIt := self correctableSelectorWarning:msg position:pos1 to:pos2.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2214
    correctIt == #generate ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2215
        receiverNode isSelf ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2216
            classToGenerateCode := classToCompileFor
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2217
        ] ifFalse:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2218
            receiverNode isVariable ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2219
                receiverNode isGlobal ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2220
                    classToGenerateCode := receiverNode evaluate.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2221
                    classToGenerateCode isBehavior ifFalse:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2222
                        classToGenerateCode := nil
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2223
                    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2224
                ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2225
            ]
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2226
        ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2227
        classToGenerateCode isNil ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2228
            className := Dialog request:'Generate code in class:' initialAnswer:classToCompileFor name.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2229
            className size == 0 ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2230
                ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2231
            ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2232
            classToGenerateCode := Smalltalk at:className asSymbol.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2233
            classToGenerateCode isNil ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2234
                self warn:'No such class.'.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2235
                ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2236
            ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2237
        ].
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2238
        (classToGenerateCode implements:aSelectorString asSymbol) ifFalse:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2239
            "do not overwrite an already existant (deprecated) method"
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2240
            classToGenerateCode
1189
5f2bfc0d501b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1187
diff changeset
  2241
                compile:((self class methodSpecificationForSelector:aSelectorString) , '\    self error:''To be implemented'' mayProceed:true' withCRs)
5f2bfc0d501b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1187
diff changeset
  2242
                classified:'** As yet uncategorized **'.
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2243
        ].
1156
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2244
        correctIt := false.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2245
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2246
    correctIt ifFalse:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2247
        alreadyWarnedUnimplementedSelectors add:aSelectorString.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2248
        ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2249
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2250
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2251
    suggestedNames := self findBestSelectorsFor:aSelectorString in:aClassOrNil.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2252
    suggestedNames notNil ifTrue:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2253
        newSelector := self askForCorrection:'correct selector to: ' fromList:suggestedNames.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2254
        newSelector isNil ifTrue:[^ aSelectorString].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2255
    ] ifFalse:[
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2256
        self information:'no good correction found'.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2257
        ^ aSelectorString
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2258
    ].
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2259
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2260
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2261
     tell requestor (i.e. CodeView) about the change
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2262
     this will update what the requestor shows.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2263
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2264
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2265
    requestor replaceSelectionBy:newSelector keepCursor:false.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2266
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2267
     get the updated source-string 
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2268
     which is needed, when we eventually install the new method
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2269
    "
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2270
    correctedSource := requestor currentSourceCode.
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2271
    source := (ReadStream on:correctedSource)
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2272
                  position:(source position + newSelector size - aSelectorString size).
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2273
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2274
    ^ newSelector
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2275
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2276
    "Modified: / 22.1.1998 / 16:36:04 / stefan"
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2277
    "Created: / 19.1.2000 / 16:34:01 / cg"
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2278
    "Modified: / 19.1.2000 / 16:34:55 / cg"
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2279
!
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2280
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2281
correctSourceByDeletingFrom:start to:stop
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2282
    "correct (by deleting token) if user wants to;
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2283
     return #Error if there was no correction;
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2284
     nil if there was one."
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2285
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2286
    |deleteSize|
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2287
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2288
    "
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2289
     tell requestor (i.e. CodeView) about the change
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2290
     this will update what the requestor shows.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2291
    "
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2292
    deleteSize := stop - start + 1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2293
    requestor deleteFromCharacterPosition:start to:stop.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2294
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2295
    "
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2296
     get the updated source-string 
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2297
     which is needed, when we eventually install the new method
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2298
    "
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2299
    correctedSource := requestor currentSourceCode.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2300
    "/ update the current source position
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2301
    source := (ReadStream on:correctedSource)
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2302
                  position:(source position - deleteSize).
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2303
    ^ nil
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2304
!
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2305
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2306
correctVariable
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2307
    "notify error and correct if user wants to;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2308
     return #Error if there was no correction 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2309
     or a ParseNode as returned by variable"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2310
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2311
    |correctIt varName suggestedNames newName pos1 pos2 rslt
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2312
     varNameIsLowercase l how choice holder|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2313
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2314
    pos1 := tokenPosition.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2315
    varName := tokenName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2316
    pos2 := pos1 + varName size - 1.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2317
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2318
    varNameIsLowercase := (varName at:1) isLowercase.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2319
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2320
"OLD:
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2321
    varNameIsLowercase ifTrue:[
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2322
        correctIt := self undefError:varName position:pos1 to:pos2.
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2323
        correctIt ifFalse:[^ #Error]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2324
    ] ifFalse:[
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2325
        correctIt := self warning:('''' , varName , ''' is undefined') position:pos1 to:pos2.
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2326
        correctIt ifFalse:[
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2327
            ^ VariableNode type:#GlobalVariable name:(varName asSymbol)
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2328
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2329
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2330
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2331
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2332
    correctIt := self undefError:varName position:pos1 to:pos2.
887
e42ea977b85d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 883
diff changeset
  2333
    (correctIt == false or:[correctIt == #continue]) ifTrue:[
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2334
        "/ no correction wanted.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2335
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2336
        "/ lowerCase vars are added to the Undeclared dictionary,
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2337
        "/ allowing easy search for bad-spots later.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2338
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2339
        varNameIsLowercase ifTrue:[
725
326f4fe4a880 only warn once for undeclared vars.
Claus Gittinger <cg@exept.de>
parents: 718
diff changeset
  2340
            ((Smalltalk includesKey:#Undeclared)
326f4fe4a880 only warn once for undeclared vars.
Claus Gittinger <cg@exept.de>
parents: 718
diff changeset
  2341
            and:[((Smalltalk at:#Undeclared) includes:varName asSymbol)]) ifFalse:[ 
326f4fe4a880 only warn once for undeclared vars.
Claus Gittinger <cg@exept.de>
parents: 718
diff changeset
  2342
                self warning:('adding ''' , varName , ''' as Undeclared.\\Remember to fix that later.') withCRs position:pos1 to:pos2.
326f4fe4a880 only warn once for undeclared vars.
Claus Gittinger <cg@exept.de>
parents: 718
diff changeset
  2343
            ].
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2344
            ^ self defineAsUndeclaredVariable:varName
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2345
        ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2346
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2347
        "/ upperCase vars are declared as global
915
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  2348
        (warnedUndefVars isNil or:[(warnedUndefVars includes:varName) not]) ifTrue:[
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  2349
            (warnedUnknownNamespaces isNil or:[(warnedUnknownNamespaces includes:varName) not]) ifTrue:[
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  2350
                self warning:('adding ''' , varName , ''' as Global.') withCRs position:pos1 to:pos2.
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  2351
            ].
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  2352
        ].
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2353
        ^ VariableNode type:#GlobalVariable name:(varName asSymbol)
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2354
    ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2355
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2356
    correctIt == #declare ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2357
        "/ declare it
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2358
        l := #().
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2359
        how := #().
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2360
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2361
        "/ BlockVar, InstVar and classInstVar not yet implemented
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2362
        varNameIsLowercase ifTrue:[
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2363
"/            currentBlock notNil ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2364
"/                l := l , #( 'Block local' ).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2365
"/                how := how , #( BlockVariable ).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2366
"/            ].
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2367
            selector notNil ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2368
                l := l , #( 'Method local' ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2369
                how := how , #( MethodVariable ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2370
            ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2371
"/            (classToCompileFor notNil
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2372
"/            and:[classToCompileFor isMeta not
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2373
"/            and:[classToCompileFor isBuiltInClass not]]) ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2374
"/                l := l , (Array with:( 'Instance variable of ' , classToCompileFor name )).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2375
"/                how := how , #( InstanceVariable ).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2376
"/            ].
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2377
        ] ifFalse:[
1041
98fa50f8353f renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  2378
            l := l , #( 'Global' 'NameSpace' ).
98fa50f8353f renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  2379
            how := how , #( GlobalVariable NameSpace ).
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2380
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2381
            (classToCompileFor notNil
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2382
            and:[classToCompileFor isBuiltInClass not
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2383
            and:[selector notNil and:[selector ~~ #doIt]]]) ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2384
                l := l , (Array 
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2385
                            with:'Class Variable in ' , classToCompileFor name
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2386
"/                            with:'Class Instance Variable in ' , classToCompileFor name
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2387
                      ).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2388
                how := how , #( ClassVariable ClassInstVariable).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2389
            ]
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2390
        ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2391
        (selector isNil or:[selector == #doIt]) ifTrue:[
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2392
            l size > 0 ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2393
                l := l ,  #( '-' ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2394
                how := how , #( nil ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2395
            ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2396
            l := l , #( 'Workspace variable' ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2397
            how := how , #( WorkspaceVariable ).
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2398
        ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2399
        l size > 0 ifTrue:[
1121
161afbb078ff asText allBold -> allBold
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2400
            l := (Array with:('Declare ' , varName allBold , ' as:') 
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2401
                        with:'-'
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2402
                 ) , l.
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2403
            how := #(nil nil) , how.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2404
            choice := (PopUpMenu labels:l) startUp.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2405
            (choice notNil and:[choice > 0]) ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2406
                choice := how at:choice.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2407
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2408
                choice == #WorkspaceVariable ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2409
                    holder := Workspace addWorkspaceVariable:varName.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2410
                    ^ VariableNode type:#WorkspaceVariable holder:holder name:varName
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2411
                ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2412
                choice == #GlobalVariable ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2413
                    Smalltalk at:varName asSymbol put:nil.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2414
                    ^ VariableNode type:#GlobalVariable name:varName asSymbol
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2415
                ].
1041
98fa50f8353f renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  2416
                choice == #NameSpace ifTrue:[
98fa50f8353f renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  2417
                    NameSpace name:varName.
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2418
                    ^ VariableNode type:#GlobalVariable name:varName asSymbol
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2419
                ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2420
                choice == #ClassVariable ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2421
                    classToCompileFor addClassVarName:varName.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2422
                    ^ VariableNode type:#ClassVariable class:classToCompileFor name:varName
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2423
                ].
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2424
                choice == #MethodVariable ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2425
                    |varIndex var endLocalsPos posToInsert ins|
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2426
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2427
                    localVarDefPosition size == 2 ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2428
                        endLocalsPos := posToInsert := localVarDefPosition at:2.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2429
                        ins := ' ' , varName.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2430
                    ] ifFalse:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2431
                        endOfSelectorPosition notNil ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2432
                             posToInsert := endOfSelectorPosition.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2433
                             ins := '|' , varName , '|' , Character cr asString , Character cr asString.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2434
                             ins := ins , (String new:(requestor colOfCharacterPosition:posToInsert)-1).   
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2435
                        ]
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2436
                    ].
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2437
                    posToInsert notNil ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2438
                        requestor 
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2439
                            insertString:ins
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2440
                            atCharacterPosition:posToInsert.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2441
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2442
                        endLocalsPos notNil ifTrue:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2443
                            localVarDefPosition at:2 put:(endLocalsPos + varName size + 1).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2444
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2445
                            methodVarNames := methodVarNames copyWith:varName.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2446
                            methodVars := methodVars copyWith:(var := Variable new name:varName).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2447
                        ] ifFalse:[
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2448
                            localVarDefPosition := Array with:posToInsert with:posToInsert+varName size+1.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2449
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2450
                            methodVarNames := Array with:varName.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2451
                            methodVars := Array with:(var := Variable new name:varName).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2452
                        ].
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2453
                        correctedSource := requestor currentSourceCode.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2454
                        source := (ReadStream on:correctedSource)
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2455
                                      position:(source position + ins size).
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2456
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2457
                        varIndex := methodVarNames size.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2458
                        var used:true.
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2459
                        ^ VariableNode type:#MethodVariable
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2460
                                       name:varName
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2461
                                       token:var
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2462
                                       index:varIndex
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2463
                    ].
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2464
                ].
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2465
                self warning:'Sorry - unimplemented (adding ' , choice , ')'.
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2466
            ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  2467
            ^ #Error
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2468
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2469
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2470
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2471
    suggestedNames := self findBestVariablesFor:varName.
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2472
    suggestedNames isNil ifTrue:[
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2473
        self information:'no good correction found'.
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2474
        ^ #Error
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2475
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2476
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2477
    newName := self askForCorrection:'correct variable to: ' fromList:suggestedNames.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2478
    newName isNil ifTrue:[^ #Error].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2479
"
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2480
        newName := suggestedNames at:1.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2481
        (self confirm:('confirm correction to: ' , newName)) ifFalse:[^ #Error].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2482
"
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  2483
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2484
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2485
     tell requestor (i.e. CodeView) about the change
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2486
     this will update what the requestor shows.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2487
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2488
    requestor replaceSelectionBy:newName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2489
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2490
     get the updated source-string 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2491
     which is needed, when we eventually install the new method
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2492
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2493
    correctedSource := requestor currentSourceCode.
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2494
    source := (ReadStream on:correctedSource)
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2495
                  position:(source position + newName size - tokenName size).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2496
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2497
    "redo parse with new value"
1103
b75a71996388 ensure that token follows tomeName & tokenValue
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2498
    token := tokenName := newName.
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2499
    rslt := self variableOrError:tokenName.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2500
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2501
    "/ failed again ?
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2502
    rslt == #Error ifTrue:[
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2503
        "/ install as Undeclared:<name>, remember in #undeclared
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2504
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2505
        rslt := self defineAsUndeclaredVariable:varName
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2506
    ].
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2507
    ^ rslt
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2508
644
834399365be9 Highlighting of undefined variables didn't work after first correction
Stefan Vogel <sv@exept.de>
parents: 640
diff changeset
  2509
    "Modified: / 22.1.1998 / 16:34:01 / stefan"
887
e42ea977b85d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 883
diff changeset
  2510
    "Modified: / 4.7.1999 / 19:24:10 / cg"
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2511
!
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2512
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2513
defineAsUndeclaredVariable:aName
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2514
    "define varName as undeclared variable
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  2515
     (actually, it will be installed as a funny global named 'Undeclared:::<name>').
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2516
     You can browse for methods with undeclareds by searching for global accesses
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  2517
     to 'Undeclared:::*' (or use the search-undeclared item in the launchers menu)."
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2518
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2519
    |varName|
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2520
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2521
    varName := aName.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2522
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2523
    "/ install as Undeclared:<name>, remember in Undeclared
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2524
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2525
    (Smalltalk includesKey:#Undeclared) ifFalse:[
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  2526
        Smalltalk at:#Undeclared put:(IdentitySet new).
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2527
    ].
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2528
    (Smalltalk at:#Undeclared) add:tokenName asSymbol.
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  2529
    varName := (Smalltalk underclaredPrefix) , tokenName.
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2530
    varName := varName asSymbol.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2531
    Smalltalk at:varName put:nil.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2532
762
66cd2b4f6689 Big BUG: remember original name in usedVars - not Undeclared::xxx
tm
parents: 755
diff changeset
  2533
    parseForCode ifFalse:[self rememberGlobalUsed:aName].
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2534
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2535
    ^ VariableNode type:#GlobalVariable name:varName
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 601
diff changeset
  2536
629
6dbcd3bb1c9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  2537
    "Modified: / 31.10.1997 / 01:16:03 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2538
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2539
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2540
deleteDefinitionOf:varName in:defStartPos to:defEndPos
1172
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
  2541
    |source startSearch pos pos2 nextChar varSlot|
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
  2542
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
  2543
    varSlot := methodVars detect:[:var | var name = varName].
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
  2544
    methodVars removeIdentical:varSlot.
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2545
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2546
    source := requestor currentSourceCode.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2547
    startSearch := defStartPos+1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2548
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2549
    [
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2550
        "/ search this names position in the declaration part ...
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2551
        pos := source indexOfSubCollection:varName startingAt:startSearch ifAbsent:0.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2552
        pos == 0 ifTrue:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2553
            self halt.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2554
            ^ self.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2555
        ].
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2556
        pos >= defEndPos ifTrue:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2557
            self halt.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2558
            ^ self.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2559
        ].
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2560
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2561
        pos2 := pos + varName size - 1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2562
        nextChar := source at:pos2+1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2563
        nextChar isLetterOrDigit ifFalse:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2564
            (source at:pos-1) == Character space ifTrue:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2565
                pos := pos - 1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2566
            ].
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2567
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2568
"/            [nextChar == Character space] whileTrue:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2569
"/                pos2 := pos2 + 1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2570
"/                nextChar := source at:pos2+1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2571
"/            ].
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2572
"/
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2573
            self correctSourceByDeletingFrom:pos to:pos2.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2574
            ^ self.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2575
        ].
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2576
        startSearch := pos2 + 1.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2577
    ] loop
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2578
!
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  2579
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2580
findBestSelectorsFor:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2581
    "collect known selectors with their spelling distances to aString;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2582
     return the 10 best suggestions"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2583
1187
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2584
    ^ self class findBestSelectorsFor:aString 
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2585
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2586
    "Time millisecondsToRun:[Parser new findBestSelectorsFor:'foo']"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2587
    "Parser new findBestSelectorsFor:'findBestSel'"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2588
    "Parser new findBestSelectorsFor:'fildBestSelectrFr'"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2589
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2590
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2591
findBestSelectorsFor:aString in:aClassOrNil
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2592
    "collect known selectors with their spelling distances to aString;
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2593
     return the 10 best suggestions. If the argument, aClassOrNil is not nil,
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2594
     the message is assumed to be sent to instances of that class (i.e. offer
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2595
     corrections from that hierarchy only)"
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2596
1187
902d406b9100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2597
    ^ self class findBestSelectorsFor:aString in:aClassOrNil
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2598
!
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2599
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2600
findBestVariablesFor:aString
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2601
    "collect known variables with their spelling distances to aString;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2602
     return the 10 best suggestions"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2603
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  2604
    |names dists searchBlock args vars globalVarName "aClass className baseClass" 
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2605
     n instVarNames classVarNames|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2606
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2607
    names := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2608
    dists := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2609
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2610
    "block arguments"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2611
    searchBlock := currentBlock.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2612
    [searchBlock notNil] whileTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2613
        args := searchBlock arguments.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2614
        args notNil ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2615
            args do:[:aBlockArg |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2616
                names add:(aBlockArg name).
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2617
                dists add:(aString spellAgainst: "levenshteinTo:"(aBlockArg name))
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2618
            ]
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2619
        ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2620
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2621
        vars := searchBlock variables.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2622
        vars notNil ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2623
            vars do:[:aBlockVar |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2624
                names add:(aBlockVar name).
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2625
                dists add:(aString spellAgainst: "levenshteinTo:"(aBlockVar name))
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2626
            ]
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2627
        ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2628
        searchBlock := searchBlock home
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2629
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2630
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2631
    "method-variables"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2632
    methodVars notNil ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2633
        methodVarNames do:[:methodVarName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2634
            names add:methodVarName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2635
            dists add:(aString spellAgainst: "levenshteinTo:"methodVarName)
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2636
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2637
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2638
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2639
    "method-arguments"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2640
    methodArgs notNil ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2641
        methodArgNames do:[:methodArgName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2642
            names add:methodArgName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2643
            dists add:(aString spellAgainst: "levenshteinTo:"methodArgName)
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2644
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2645
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2646
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2647
    "instance-variables"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2648
    classToCompileFor notNil ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2649
        self classesInstVarNames do:[:instVarName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2650
            names add:instVarName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2651
            dists add:(aString spellAgainst: "levenshteinTo:"instVarName)
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2652
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2653
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2654
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2655
    "class-variables"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2656
    classToCompileFor notNil ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2657
        self classesClassVarNames do:[:classVarName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2658
            names add:classVarName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2659
            dists add:(aString spellAgainst: "levenshteinTo:"classVarName)
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2660
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2661
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2662
"/        aClass := classToCompileFor.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2663
"/        aClass isMeta ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2664
"/            className := aClass name.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2665
"/            className := className copyWithoutLast:5.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2666
"/            baseClass := Smalltalk at:(className asSymbol).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2667
"/            baseClass notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2668
"/                aClass := baseClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2669
"/            ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2670
"/        ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2671
"/        [aClass notNil] whileTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2672
"/            (aClass classVarNames) do:[:classVarName |
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2673
"/                names add:classVarName.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2674
"/                dists add:(aString spellAgainst: "levenshteinTo:"classVarName)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2675
"/            ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2676
"/            aClass := aClass superclass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2677
"/        ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2678
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2679
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2680
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2681
    "globals"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2682
    Smalltalk keysDo:[:aKey |
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2683
        globalVarName := aKey asString.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2684
        "only compare strings where length is about right"
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2685
        ((globalVarName size - aString size) abs < 3) ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2686
            names add:globalVarName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2687
            dists add:(aString spellAgainst: "levenshteinTo:"globalVarName)
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2688
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2689
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2690
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2691
    "misc"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2692
    #('self' 'super' 'nil' 'thisContext') do:[:name |
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2693
        names add:name.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2694
        dists add:(aString spellAgainst: "levenshteinTo:"name)
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2695
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2696
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2697
    (dists size ~~ 0) ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2698
        dists sortWith:names.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2699
        dists := dists reverse.             
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2700
        names := names reverse.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2701
        n := names size min:10.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2702
        names := names copyTo:n.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2703
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2704
        "if it starts with a lower case character, add all local & instvar names"
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2705
        (aString at:1) isLowercase ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2706
            methodVarNames size > 0 ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2707
                names add:'---- method locals ----'.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2708
                methodVarNames asSortedCollection do:[:methodVarName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2709
                    names add:methodVarName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2710
                ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2711
            ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2712
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2713
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2714
            methodArgs size > 0 ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2715
                names add:'---- method arguments ----'.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2716
                methodArgNames asSortedCollection do:[:methodArgName |
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2717
                    names add:methodArgName.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2718
                ]
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2719
            ].
1078
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2720
            classToCompileFor notNil ifTrue:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2721
                instVarNames := OrderedCollection new.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2722
                self classesInstVarNames asSortedCollection do:[:instVarName |
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2723
                    (instVarNames includes:instVarName) ifFalse:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2724
                        instVarNames add:instVarName.
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2725
                    ]
1078
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2726
                ].
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2727
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2728
                instVarNames size > 0 ifTrue:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2729
                    (classToCompileFor notNil and:[classToCompileFor isMeta]) ifTrue:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2730
                        names add:'---- class instance variables ----'.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2731
                    ] ifFalse:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2732
                        names add:'---- instance variables ----'.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2733
                    ].
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2734
                    instVarNames do:[:instVarName |
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2735
                        (names includes:instVarName) ifFalse:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2736
                            names add:instVarName.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2737
                        ]
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2738
                    ]
1078
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2739
                ].
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2740
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2741
                classVarNames := OrderedCollection new.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2742
                self classesClassVarNames asSortedCollection do:[:classVarName |
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2743
                    (classVarNames includes:classVarName) ifFalse:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2744
                        classVarNames add:classVarName.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2745
                    ]
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2746
                ].
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2747
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2748
                classVarNames size > 0 ifTrue:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2749
                    names add:'---- class variables ----'.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2750
                    classVarNames do:[:classVarName |
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2751
                        (names includes:classVarName) ifFalse:[
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2752
                            names add:classVarName.
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2753
                        ]
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2754
                    ]
bf1d18b918cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2755
                ].
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2756
            ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2757
        ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2758
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  2759
        ^ names
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2760
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2761
    ^ nil
450
8ad79af3e91c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  2762
480
e4ac7e62ca9a better block-var name detection in debugger
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  2763
    "Modified: 11.1.1997 / 21:28:28 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2764
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2765
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2766
selectorCheck:aSelectorString for:receiver position:pos1 to:pos2
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2767
    "just a quick check: if a selector is totally unknown as a symbol, 
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2768
     has the same name as a variable, cannot be understood or is obsolete.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2769
     Simple, but catches many typos"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2770
1168
6eea38689d4a allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  2771
    |err sym rec names recType selClass newSelector nm|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2772
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2773
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2774
     if compiling lazy, or errors are to be ignored, or there
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2775
     is no requestor, do not check
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2776
    "
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2777
    (LazyCompilation == true) ifTrue:[^ aSelectorString].
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  2778
    self isSyntaxHighlighter ifFalse:[
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2779
        (ignoreErrors or:[ignoreWarnings]) ifTrue:[^ aSelectorString].
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2780
        (requestor isNil or:[requestor isStream]) ifTrue:[^ aSelectorString].
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  2781
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2782
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2783
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2784
     check if the selector is known at all
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2785
     - if not, it cannot be understood
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2786
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2787
    sym := aSelectorString asSymbolIfInterned.
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2788
    sym isNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2789
        err := ' is currently nowhere implemented'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2790
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2791
        "
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2792
         if the selector has the name of a variable, use another message
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2793
        "
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2794
        ((methodVarNames notNil and:[methodVarNames includes:aSelectorString])
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2795
          or:[(methodArgNames notNil and:[methodArgNames includes:aSelectorString])
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2796
          or:[(classToCompileFor notNil
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2797
               and:[((names := self classesInstVarNames) notNil and:[names includes:aSelectorString])])
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2798
          or:[(classToCompileFor notNil
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2799
                and:[((names := self classesClassInstVarNames) notNil and:[names includes:aSelectorString])])
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2800
          or:[classToCompileFor notNil 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2801
               and:[((names := self classesClassVarNames) notNil and:[names includes:aSelectorString])]]]]]) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2802
            err := ' is currently nowhere implemented ..
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2803
.. but a variable with that name is defined. 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2804
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2805
Missing ''.'' after the previous expression 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2806
or missing keyword/receiver before that word ?'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2807
        ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2808
    ] ifFalse:[receiver notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2809
        receiver isConstant ifTrue:[
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2810
            "
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2811
             if the receiver is a constant, we can check if it responds
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2812
             to this selector
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2813
            "
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2814
            rec := receiver evaluate.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2815
            selClass := rec class.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2816
            err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2817
            err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2818
                err := err, ' (message to ' , rec classNameWithArticle , ')'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2819
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2820
        ] ifFalse:[receiver isBlock ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2821
            "/ this should help with typos, sending #ifTrue to blocks ...
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2822
            err := self checkSelector:sym inClass:Block.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2823
            err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2824
                selClass := Block.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2825
                err := err, ' (message to a Block)'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2826
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2827
        ] ifFalse:[(((recType := receiver type) == #GlobalVariable)
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2828
                    or:[recType == #PrivateClass]) ifTrue:[
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2829
            "if the receiver is a global, we check it too ..."
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2830
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2831
            rec := receiver evaluate. 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2832
            "/ dont check autoloaded classes 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2833
            "/ - it may work after loading
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2834
            (rec isNil 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2835
             or:[rec isBehavior and:[rec isLoaded not]]) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2836
                ^ aSelectorString
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2837
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2838
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2839
            selClass := rec class.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2840
            err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2841
            err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2842
                (rec isBehavior
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2843
                 and:[rec theNonMetaclass name = receiver name]) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2844
                    err := err, ' in ' , rec theNonMetaclass name.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2845
                ] ifFalse:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2846
                    err := err, ' in currently assigned value (is currently ' , rec classNameWithArticle , ')'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2847
                ]
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2848
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2849
        ] ifFalse:[receiver isSuper ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2850
            "if its a super- or here-send, we can do more checking"
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2851
            receiver isHere ifFalse:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2852
                selClass := classToCompileFor superclass ? UndefinedObject.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2853
                err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2854
                err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2855
                    err := err, ' in superclass chain'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2856
                ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2857
            ] ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2858
                selClass := classToCompileFor.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2859
                err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2860
                err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2861
                    err := err, ' in this class or superclass chain'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2862
                ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2863
            ]
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2864
        ] ifFalse:[receiver isSelf ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2865
            selClass := classToCompileFor.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2866
            err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2867
            err notNil ifTrue:[ |subErr|
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2868
                "/ understood by all subclasses ?
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2869
                classToCompileFor allSubclassesDo:[:eachSubclass |
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2870
                    subErr isNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2871
                        selClass := eachSubclass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2872
                        subErr := self checkSelector:sym inClass:selClass.     
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2873
                    ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2874
                ].   
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2875
                subErr notNil ifTrue:[
1180
6c9e56ce34dc error message
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
  2876
                    err := subErr, ' in this class, superclass chain or all subclasses'
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2877
                ] ifFalse:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2878
                    err := err, ' in this class or superclass chain'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2879
                ].    
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2880
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2881
        ] ifFalse:[(receiver isUnaryMessage
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2882
                    and:[receiver selector == #class
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2883
                    and:[receiver receiver isSelf]]) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2884
            "its a message to self class - can check this too ..."
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2885
            selClass := classToCompileFor class.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2886
            err := self checkSelector:sym inClass:selClass.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2887
            err notNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2888
                err := err, ' in my metaclass'.
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2889
            ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2890
        ] ifFalse:[(receiver type == #MethodVariable) ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2891
            "if it is an uninitialized variable ..."
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2892
            ((modifiedLocalVars isNil or:[(modifiedLocalVars includes:receiver name) not])
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2893
             and:[alreadyWarnedUninitializedVars isNil 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2894
                  or:[(alreadyWarnedUninitializedVars includes:receiver name) not]]) 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2895
            ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2896
                ((#(at: at:put: basicAt: basicAt:put:) includes:sym) 
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2897
                 or:[(nil respondsTo:sym) not])ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2898
                    "/ avoid trouble in miniTalk
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2899
                    "/ during bootstrap
1168
6eea38689d4a allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  2900
                    nm := receiver name.    
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2901
                    Text notNil ifTrue:[
1168
6eea38689d4a allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  2902
                        nm := nm allItalic
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2903
                    ].
1168
6eea38689d4a allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  2904
                    err := 'sent to possibly uninitialized variable ''' , nm , ''' here (?)'.
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2905
                    alreadyWarnedUninitializedVars isNil ifTrue:[
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2906
                        alreadyWarnedUninitializedVars := Set new
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2907
                    ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2908
                    alreadyWarnedUninitializedVars add:receiver name
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2909
                ]
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2910
            ]
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2911
        ]]]]]]]]
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2912
    ].
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2913
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2914
    err notNil ifTrue:[
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2915
        (receiver notNil
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2916
        and:[((recType := receiver type) == #GlobalVariable)
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2917
             or:[recType == #PrivateClass]]) ifTrue:[
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2918
            "/ dont check autoloaded classes 
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2919
            "/ - it may work after loading
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2920
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2921
            rec := receiver evaluate. 
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2922
            (rec notNil 
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2923
             and:[rec isBehavior
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2924
             and:[rec isLoaded not]]) ifTrue:[
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2925
                ^ aSelectorString
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2926
            ].
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2927
            rec class == UndefinedVariable ifTrue:[
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2928
                "/ dont check undefined vars;
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2929
                "/ it may work after loading/defining
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2930
                ^ aSelectorString
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2931
            ].
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2932
        ].
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2933
        Text notNil ifTrue:[
1168
6eea38689d4a allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  2934
            err := aSelectorString allItalic, ' ', err
1052
0a1e613468f5 avoid trouble if Text class is not present (in mini-image)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2935
        ] ifFalse:[
1158
f2cbdb21e0b0 Check for obsolete methods, if possible.
Stefan Vogel <sv@exept.de>
parents: 1157
diff changeset
  2936
            err := aSelectorString , ' ', err
1052
0a1e613468f5 avoid trouble if Text class is not present (in mini-image)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2937
        ].
1157
122be9201878 selectorCheck (do not complain for new selector being recursively invoked)
Claus Gittinger <cg@exept.de>
parents: 1156
diff changeset
  2938
        "/ if its a recursive invocation of just that selector, do not complain
122be9201878 selectorCheck (do not complain for new selector being recursively invoked)
Claus Gittinger <cg@exept.de>
parents: 1156
diff changeset
  2939
        (selector = aSelectorString and:[ receiver isSelf]) ifTrue:[
122be9201878 selectorCheck (do not complain for new selector being recursively invoked)
Claus Gittinger <cg@exept.de>
parents: 1156
diff changeset
  2940
            ^ aSelectorString
122be9201878 selectorCheck (do not complain for new selector being recursively invoked)
Claus Gittinger <cg@exept.de>
parents: 1156
diff changeset
  2941
        ].
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2942
        newSelector := self correctSelector:aSelectorString 
1156
b491528ad92b fixed 'generate' option (in selector will not be understood)
Claus Gittinger <cg@exept.de>
parents: 1155
diff changeset
  2943
                            message:err position:pos1 to:pos2 in:selClass for:receiver.
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2944
"/        self warning:('#' , aSelectorString , '\\' , err) withCRs position:pos1 to:pos2.
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2945
        ^ newSelector.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2946
    ].
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2947
    ^ aSelectorString
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2948
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  2949
    "Modified: / 5.9.1995 / 17:02:11 / claus"
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  2950
    "Modified: / 19.1.2000 / 16:34:03 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2951
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2952
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2953
!Parser methodsFor:'error handling'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2954
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2955
exitWith:something
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2956
    "this is the longjump out of evaluation via a return expression"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2957
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2958
    evalExitBlock value:something
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2959
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2960
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2961
identifierExpectedIn:what
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2962
    |msg|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2963
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2964
    (#(True False Self Nil Super ThisContext) includes:tokenType) ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2965
	msg := 'Reserved keyword in ' 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2966
    ] ifFalse:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2967
	msg := 'Identifier expected in ' 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2968
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2969
    self syntaxError:msg , what position:tokenPosition to:source position - 1.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2970
    ^ #Error
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2971
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  2972
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2973
showErrorMessage:aMessage position:pos
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  2974
    "redefined since parser can give more detailed info about
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  2975
     the class & selector where the error occured."
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  2976
71
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
  2977
    |text|
2aac7fbb5be0 *** empty log message ***
claus
parents: 66
diff changeset
  2978
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  2979
    ignoreErrors ifFalse:[
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2980
        Smalltalk silentLoading == true ifFalse:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2981
            pos notNil ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2982
                Transcript show:(pos printString).
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2983
                Transcript show:' '.
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2984
            ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2985
            selector notNil ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2986
                Transcript show:aMessage.
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2987
                classToCompileFor notNil ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2988
                    text := ' in ' , classToCompileFor name , '>>' , selector
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2989
                ] ifFalse:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2990
                    text := ' in ' , selector
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2991
                ]
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2992
            ] ifFalse:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2993
                classToCompileFor notNil ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2994
                    text := aMessage , ' (' , classToCompileFor name , ')'
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2995
                ] ifFalse:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2996
                    text := aMessage
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2997
                ]
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2998
            ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  2999
            Transcript showCR:text.
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3000
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3001
    ]
273
2758f1723f53 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  3002
2758f1723f53 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  3003
    "Modified: 18.5.1996 / 15:44:15 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3004
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3005
171
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3006
showErrorMessageForClass:aClass
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3007
"/        compiler parseError:'syntax error'.
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3008
    Transcript show:'    '.
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3009
    aClass notNil ifTrue:[
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  3010
	Transcript show:aClass name , '>>'
171
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3011
    ].
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3012
    selector notNil ifTrue:[
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  3013
	Transcript show:(selector)
171
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3014
    ].
273
2758f1723f53 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  3015
    Transcript showCR:' -> Error'.
171
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3016
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3017
    "Created: 13.12.1995 / 20:24:34 / cg"
273
2758f1723f53 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
  3018
    "Modified: 18.5.1996 / 15:44:17 / cg"
171
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3019
!
fc14729145ff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 165
diff changeset
  3020
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3021
undefError:aName position:pos1 to:pos2
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  3022
    "report an undefined variable error - return true, if it should be
86
claus
parents: 85
diff changeset
  3023
     corrected. If not corrected, only one warning is made per undefined
claus
parents: 85
diff changeset
  3024
     variable."
claus
parents: 85
diff changeset
  3025
429
ffc4e2ab5581 cleanup
Claus Gittinger <cg@exept.de>
parents: 427
diff changeset
  3026
    |doCorrect msg idx|
86
claus
parents: 85
diff changeset
  3027
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  3028
    warnUndeclared ifFalse:[^ false].
915
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  3029
    ignoreWarnings ifTrue:[^ false].
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  3030
86
claus
parents: 85
diff changeset
  3031
    "
claus
parents: 85
diff changeset
  3032
     alredy warned about this one ?
claus
parents: 85
diff changeset
  3033
    "
claus
parents: 85
diff changeset
  3034
    warnedUndefVars notNil ifTrue:[
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3035
        (warnedUndefVars includes:aName) ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3036
            "already warned about this one"
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3037
            ^ false
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3038
        ].
86
claus
parents: 85
diff changeset
  3039
    ].
claus
parents: 85
diff changeset
  3040
131
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3041
"/    (classToCompileFor notNil 
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3042
"/    and:[classToCompileFor superclass notNil
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3043
"/    and:[classToCompileFor superclass instanceVariableString isNil]]) ifTrue:[
132
5be56a5e90b7 added methods for silent parsing (parseMethod / parseMethodSpec)
Claus Gittinger <cg@exept.de>
parents: 131
diff changeset
  3044
"/      self showErrorMessage:'Error: no source information (instvar names)' position:pos1.
5be56a5e90b7 added methods for silent parsing (parseMethod / parseMethodSpec)
Claus Gittinger <cg@exept.de>
parents: 131
diff changeset
  3045
"/      ^ false
131
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3046
"/    ].
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3047
5fcdc8c7770d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3048
    (requestor isNil or:[requestor isStream]) ifTrue:[
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3049
        aName first isUppercase ifFalse:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3050
            self showErrorMessage:('Error: ''' , aName , ''' is undefined') position:pos1.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3051
        ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3052
        doCorrect := false.
86
claus
parents: 85
diff changeset
  3053
    ] ifFalse:[
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3054
        "
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3055
         ask requestor for correct/continue/abort ...
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3056
         it is supposed to raise abort or return true/false.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3057
         True return means that correction is wanted.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3058
        "
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3059
        msg := 'Warning: ''' , aName , ''' is undefined'.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3060
        classToCompileFor notNil ifTrue:[
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3061
            "/ is it an instance-variable marked inaccessable ?
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3062
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3063
            idx := (self classesInstVarNames) indexOf:(aName , '*') startingAt:1.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3064
            idx ~~ 0 ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3065
                msg := 'Warning: ' , aName , ' is a hidden instvar (not accessable from ST-code)'.
989
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3066
            ].
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3067
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3068
            "/ is it an instance variable, while evaluateing for the class ?
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3069
            classToCompileFor isMeta ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3070
                (classToCompileFor soleInstance allInstVarNames includes:aName) ifTrue:[
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3071
                    msg := 'Warning: ' , aName , ' is an instvar\(hint: you are evaluating/compiling in the classes context)' withCRs.
6e535d9d87d8 better undef-variable message;
Claus Gittinger <cg@exept.de>
parents: 988
diff changeset
  3072
                ]
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3073
            ]
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3074
        ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3075
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3076
        doCorrect := self correctableError:msg position:pos1 to:pos2
86
claus
parents: 85
diff changeset
  3077
    ].
claus
parents: 85
diff changeset
  3078
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3079
    doCorrect == false ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3080
        warnedUndefVars isNil ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3081
            warnedUndefVars := Set new.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3082
        ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  3083
        warnedUndefVars add:aName.
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  3084
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3085
86
claus
parents: 85
diff changeset
  3086
    ^ doCorrect
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  3087
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  3088
    "Modified: 7.9.1997 / 02:14:36 / cg"
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3089
!
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3090
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3091
warnUnused:aNameCollection
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3092
    "report an unused method variable"
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3093
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3094
    |s answer|
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3095
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3096
    (ignoreErrors not and:[ignoreWarnings not and:[warnUnusedVars]]) ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3097
        s := '' writeStream.
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3098
        s nextPutAll:'Unused method variable(s): '.
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3099
        aNameCollection asSortedCollection do:[:name|
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3100
            s nextPut:Character space; nextPutAll:name asText allBold.
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3101
        ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3102
        (requestor isNil or:[requestor isStream]) ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3103
            self showErrorMessage:('Warning: ', s contents) position:nil.
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3104
        ] ifFalse:[
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3105
            answer := requestor 
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3106
                unusedVariableWarning:s contents
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3107
                position:(localVarDefPosition first) to:(localVarDefPosition last) from:self.
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3108
            answer == true ifTrue:[
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3109
                "/ delete the definitions ...
1171
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3110
                self information:'Sorry - not yet implemented'.
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3111
                "/ ATTENTION: MUST force a recompile after the deletion,
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3112
                "/            since localVariable-offsets change with the removal
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3113
                "/            (but the parseTree which has already been generated does not
1172
401e669ebaf9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
  3114
                "/             know about this and therefore contains the wrong indices...)
1171
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3115
"/                aNameCollection do:[:eachName |
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3116
"/                    self deleteDefinitionOf:eachName in:(localVarDefPosition first) to:(localVarDefPosition last).
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3117
"/                ].
1167
34f58eacdbda unused variables correction
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  3118
            ].
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3119
        ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3120
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3121
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3122
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3123
!Parser methodsFor:'parsing'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3124
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3125
block
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3126
    "parse a block; return a node-tree, nil or #Error"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3127
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3128
    |node args argNames arg pos pos2 lno|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3129
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3130
    lno := tokenLineNr.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3131
    self nextToken.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3132
    (tokenType == $: ) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3133
        [tokenType == $:] whileTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3134
            pos := tokenPosition.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3135
            self nextToken.
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3136
            (tokenType ~~ #Identifier) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3137
                ^ self identifierExpectedIn:'block-arg declaration'
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3138
            ].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3139
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3140
            pos2 := tokenPosition + tokenName size - 1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3141
            self markArgumentIdentifierFrom:tokenPosition to:pos2.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3142
            arg := Variable name:tokenName.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3143
            args isNil ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3144
                args := Array with:arg.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3145
                argNames := Array with:tokenName.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3146
            ] ifFalse:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3147
                (argNames includes:tokenName) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3148
                    "/ argname reuse
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3149
                    self isSyntaxHighlighter ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3150
                        self markBadIdentifierFrom:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3151
                    ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3152
                        self 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3153
                            syntaxError:'redefinition of ''' , tokenName , ''' in argument list.'
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3154
                            position:tokenPosition to:pos2
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3155
                    ]
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3156
                ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3157
                args := args copyWith:arg.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3158
                argNames := argNames copyWith:tokenName.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3159
            ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3160
            self nextToken
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3161
        ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3162
        (tokenType ~~ $| ) ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3163
            "ST-80 allows [:arg ]"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3164
            (tokenType == $] ) ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3165
                node := BlockNode arguments:args home:currentBlock variables:nil.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3166
                node lineNumber:lno.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3167
                ^ node
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3168
            ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3169
            self syntaxError:'| expected after block-arg declaration'.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3170
            ^ #Error
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3171
        ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3172
        self nextToken
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3173
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3174
    node := self blockBody:args.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3175
    (node notNil and:[node ~~ #Error]) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3176
        node lineNumber:lno.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3177
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3178
    ^ node
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3179
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3180
    "Modified: / 31.3.1998 / 17:31:34 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3181
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3182
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3183
blockBody:args
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3184
    "parse a blocks body; return a node-tree, nil or #Error"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3185
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3186
    |stats node var vars lno names pos2|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3187
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3188
    lno := tokenLineNr.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3189
    (tokenType == $| ) ifTrue:[
668
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3190
        self nextToken.
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3191
        [tokenType == $|] whileFalse:[
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3192
            (tokenType == #Identifier) ifFalse:[
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3193
                ^ self identifierExpectedIn:'block-var declaration'
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3194
            ].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3195
            pos2 := tokenPosition + tokenName size - 1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3196
            self markLocalIdentifierFrom:tokenPosition to:pos2.
668
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3197
            var := Variable name:tokenName.
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3198
            vars isNil ifTrue:[
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3199
                vars := Array with:var.
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3200
                names := Array with:tokenName
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3201
            ] ifFalse:[
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3202
                (names includes:tokenName) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3203
                    "/ varname reuse
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3204
                    self isSyntaxHighlighter ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3205
                        self markBadIdentifierFrom:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3206
                    ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3207
                        self 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3208
                            parseError:'redefinition of ''' , tokenName , ''' in local variables'
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3209
                            position:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3210
                    ]
668
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3211
                ] ifFalse:[
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3212
                    vars := vars copyWith:var.
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3213
                    names := names copyWith:tokenName
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3214
                ]
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3215
            ].
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3216
            self nextToken.
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3217
        ].
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3218
        self nextToken
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3219
    ].
382
49aeeb0746ba more lineNumber info
Claus Gittinger <cg@exept.de>
parents: 377
diff changeset
  3220
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3221
    node := BlockNode arguments:args home:currentBlock variables:vars.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3222
    node lineNumber:lno.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3223
    currentBlock := node.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3224
    stats := self blockStatementList.
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3225
    (stats == #Error) ifTrue:[^ #Error].
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3226
382
49aeeb0746ba more lineNumber info
Claus Gittinger <cg@exept.de>
parents: 377
diff changeset
  3227
    lineNumberInfo == #full ifTrue:[
668
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3228
        node endLineNumber:tokenLineNr
382
49aeeb0746ba more lineNumber info
Claus Gittinger <cg@exept.de>
parents: 377
diff changeset
  3229
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3230
    node statements:stats.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3231
    currentBlock := node home.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3232
    ^ node
382
49aeeb0746ba more lineNumber info
Claus Gittinger <cg@exept.de>
parents: 377
diff changeset
  3233
668
8cc13d42d244 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
  3234
    "Modified: / 31.3.1998 / 22:46:09 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3235
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3236
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3237
blockExpression
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3238
    "parse a blockExpression; return a node-tree, nil or #Error.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3239
     Not used by ST/X's parser, but added for ST-80 compatibility."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3240
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3241
    tokenType ~~ $[ ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3242
	self syntaxError:'[ expected'.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3243
	^ #Error.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3244
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3245
    ^ self block
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3246
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3247
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3248
blockStatementList
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3249
    "parse a blocks statementlist; return a node-tree, nil or #Error"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3250
743
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  3251
    |thisStatement prevStatement firstStatement eMsg|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3252
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3253
    (tokenType == $] ) ifTrue:[^ nil].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3254
    thisStatement := self statement.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3255
    (thisStatement == #Error) ifTrue:[^ #Error].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3256
    firstStatement := thisStatement.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3257
    [tokenType == $] ] whileFalse:[
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  3258
        (tokenType == $.) ifFalse:[
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3259
            (tokenType == #EOF) ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3260
                self syntaxError:'missing '']'' in block'.
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3261
                ^ #Error.
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3262
            ].
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3263
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3264
            (tokenType == $) ) ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3265
                eMsg := 'missing '']'' or bad '')'' in block'
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  3266
            ] ifFalse:[
1182
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3267
                eMsg := 'missing ''.'' between statements (i.e. ''' , tokenType printString , '''-token unexpected)'
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  3268
            ].
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  3269
            self syntaxError:eMsg position:tokenPosition to:tokenPosition.
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  3270
            ^ #Error
1182
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3271
        ].
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3272
        prevStatement := thisStatement.
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3273
        self nextToken.
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3274
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3275
        tokenType == $] ifTrue:[
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3276
            "
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3277
            *** I had a warning here (since it was not defined
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3278
            *** in the blue-book; but PD-code contains a lot of
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3279
            *** code with periods at the end so that the warnings
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3280
            *** became annoying
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3281
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3282
            self warning:'period after last statement in block'.
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3283
            "
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3284
            self markBracketAt:tokenPosition.
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3285
            ^ firstStatement
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3286
        ].
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3287
        thisStatement := self statement.
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3288
        (thisStatement == #Error) ifTrue:[^ #Error].
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3289
        prevStatement nextStatement:thisStatement
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3290
    ].
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  3291
    self markBracketAt:tokenPosition.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3292
    ^ firstStatement
743
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  3293
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  3294
    "Modified: / 16.7.1998 / 20:38:25 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3295
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3296
1006
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3297
parseExpressionWithSelf:anObject notifying:someOne ignoreErrors:ignoreErrors ignoreWarnings:ignoreWarnings inNameSpace:aNameSpaceOrNil
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3298
    "parse aString as an expression with self set to anObject;
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3299
     Return the parseTree (if ok), nil (for an empty string 
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3300
     or comment only ) or #Error (syntactic error).
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3301
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3302
     Errors and warnings are forwarded to someOne (usually some
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3303
     codeView) which can highlight it and show a popup box,
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3304
     iff ignoreErrors/ignoreWarnings is true respectively."
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3305
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3306
    |tree token|
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3307
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3308
    aNameSpaceOrNil notNil ifTrue:[
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3309
        self currentNameSpace:aNameSpaceOrNil
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3310
    ].
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3311
    self setSelf:anObject.
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3312
    self notifying:someOne.
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3313
    ignoreErrors ifTrue:[self ignoreErrors].
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3314
    ignoreWarnings ifTrue:[self ignoreWarnings].
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3315
    token := self nextToken.
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3316
    (token == $^) ifTrue:[
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3317
        self nextToken.
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3318
    ].
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3319
    tree := self expression.
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3320
    (self errorFlag or:[tree == #Error]) ifTrue:[^ #Error].
1182
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3321
"/    tokenType ~~ #EOF ifTrue:[
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3322
"/        self parseError:'nothing more expected' position:tokenPosition
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3323
"/    ].
1006
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3324
    ^ tree
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3325
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3326
    "Created: / 14.12.1999 / 15:11:37 / cg"
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3327
!
ffce16b01b0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  3328
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3329
parseMethod
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3330
    "parse a method.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3331
     Return the parseTree or #Error.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3332
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3333
     method ::= methodSpec methodBody
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3334
    "
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3335
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3336
    |parseTree|
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3337
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3338
"/    self nextToken.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3339
    (self parseMethodSpec == #Error) ifTrue:[^ #Error].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3340
    parseTree := self parseMethodBody.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3341
    (parseTree == #Error) ifFalse:[
1171
0c43ce981f1b oops - remove unused vars does not work (yet)
Claus Gittinger <cg@exept.de>
parents: 1169
diff changeset
  3342
        self tree:parseTree
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3343
    ].
1186
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  3344
    self checkForEndOfInput.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3345
    ^ parseTree
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3346
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3347
    "Modified: 20.4.1996 / 20:09:26 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3348
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3349
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3350
parseMethodBody
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3351
    "parse a methods body (locals & statements). 
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3352
     No more tokens may follow.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3353
     Return a node-tree, or #Error
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3354
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3355
     methodBody ::= '<' st80Primitive '>' #EOF
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3356
                    | '<' st80Primitive '>' methodBodyVarSpec statementList #EOF
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3357
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3358
    "
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3359
    |stats unused|
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3360
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3361
"/    classToCompileFor notNil ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3362
"/        stats := self parseMethodBodyOrEmpty.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3363
"/    ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3364
        stats := self parseMethodBodyOrEmpty.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3365
"/    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3366
    (stats == #Error) ifFalse:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3367
        (tokenType ~~ #EOF) ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3368
            "/ just for the nicer error message
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3369
            (#(Self Nil True False Super Here) includes:tokenType) ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3370
                self parseError:tokenName , ' unexpected (missing ''.'' before ' , tokenName , ' ?)' 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3371
                       position:tokenPosition to:(tokenPosition + tokenName size - 1)
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3372
            ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3373
                self parseError:(tokenType printString , ' unexpected (missing ''.'' or selector before it ?)') 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3374
                     position:tokenPosition to:source position-1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3375
            ].
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3376
            ^#Error
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3377
        ]
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3378
    ].
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3379
    ignoreWarnings ifFalse:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3380
        methodVars notNil ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3381
            unused := methodVars select:[:var| var used ~~ true] thenCollect:[:var| var name].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3382
        ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3383
        unused size > 0 ifTrue:[
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3384
            self warnUnused:unused.
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3385
        ].
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  3386
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3387
    ^ stats
165
213e3f12fc56 better error message when selector is missing
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
  3388
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  3389
    "Modified: 14.10.1997 / 20:53:17 / cg"
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3390
!
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3391
79
26f81a94a6ea *** empty log message ***
claus
parents: 78
diff changeset
  3392
parseMethodBodyOrEmpty
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3393
    "parse a methods body (locals & statements);
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3394
     return  a node-tree, nil or #Error. 
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3395
     empty (or comment only) input is accepted and returns nil.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3396
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3397
     methodBodyOrNil ::= '<' st80Primitive '>'
1182
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3398
                         | '<' st80Primitive '>' methodBodyVarSpec statementList
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3399
                         | <empty>
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3400
    "
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3401
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3402
    |stats|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3403
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3404
    (self parseMethodBodyVarSpec == #Error) ifTrue:[^ #Error].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3405
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3406
    (tokenType ~~ #EOF) ifTrue:[
1182
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3407
        stats := self statementList
34aac67e6e72 care for unexpected stuff at the end (in a doit)
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3408
    ].
1186
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  3409
"/    (tokenType ~~ #EOF) ifTrue:[
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  3410
"/        self parseError:'nothing more expected here' position:tokenPosition to:tokenPosition.
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  3411
"/        ^ #Error
014c3db76517 oops - end of input check should not be done when simply evaluating
Claus Gittinger <cg@exept.de>
parents: 1182
diff changeset
  3412
"/    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3413
    ^ stats
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3414
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3415
    "Modified: 27.4.1996 / 16:57:56 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3416
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3417
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3418
parseMethodBodyVarSpec
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3419
    "parse a methods local variable specification, handling
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3420
     possible primitive or resourceSpecs.
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3421
     . 
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3422
     Leave spec of locals in methodLocals as a side effect.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3423
     Return #Error or nil.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3424
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3425
     methodBodyVarSpec ::= '|' { IDENTIFIER } '|'
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3426
                            | <empty>
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3427
    "
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3428
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3429
    |var pos pos2 msg|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3430
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3431
    ((tokenType == #BinaryOperator) and:[tokenName = '<']) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3432
        self parsePrimitiveOrResourceSpecOrEmpty.
265
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3433
    ].
a8617dc49bbf examples
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3434
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3435
    (tokenType == $|) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3436
        "memorize position for declaration in correction"
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3437
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3438
        localVarDefPosition := tokenPosition.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3439
        self nextToken.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3440
        pos := tokenPosition.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3441
        [tokenType == #Identifier] whileTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3442
            pos2 := tokenPosition + tokenName size - 1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3443
            self markLocalIdentifierFrom:tokenPosition to:pos2.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3444
            var := Variable name:tokenName.
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3445
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3446
            methodVars isNil ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3447
                methodVars := OrderedCollection with:var.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3448
                methodVarNames := OrderedCollection with:tokenName
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3449
            ] ifFalse:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3450
                (methodVarNames includes:tokenName) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3451
                    "/ redefinition
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3452
                    self isSyntaxHighlighter ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3453
                        self markBadIdentifierFrom:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3454
                    ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3455
                        self 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3456
                            parseError:'redefinition of ''' , tokenName , ''' in local variables'
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3457
                            position:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3458
                    ]
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3459
                ] ifFalse:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3460
                    methodVars add:var.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3461
                    methodVarNames add:tokenName
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3462
                ]
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3463
            ].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3464
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3465
            methodArgNames notNil ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3466
                (methodArgNames includes:tokenName) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3467
                    self 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3468
                        warning:'local variable ''' , tokenName , ''' hides argument.'
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3469
                        position:tokenPosition to:pos2
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3470
                ]
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3471
            ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3472
            self nextToken.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3473
            pos := tokenPosition
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3474
        ].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3475
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3476
        (tokenType ~~ $|) ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3477
            (#(True False Self Nil Super ThisContext) includes:tokenType) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3478
                msg := 'Reserved keyword in local var declaration'. 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3479
                pos2 := tokenPosition + tokenName size - 1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3480
                self markBadIdentifierFrom:tokenPosition to:pos2.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3481
            ] ifFalse:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3482
                pos2 := source position-1.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3483
                msg := 'Identifier or | expected in local var declaration' 
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3484
            ].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3485
            self syntaxError:msg position:tokenPosition to:pos2.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3486
            ^ #Error
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3487
        ].
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  3488
        localVarDefPosition := Array with:localVarDefPosition with:tokenPosition.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3489
        self nextToken
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3490
    ].
984
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3491
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3492
    AllowSqueakExtensions ifTrue:[
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3493
        "/ allow for primitiveSpec after local-var decl.
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3494
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3495
        ((tokenType == #BinaryOperator) and:[tokenName = '<']) ifTrue:[
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3496
            self parsePrimitiveOrResourceSpecOrEmpty.
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3497
        ]
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3498
    ].
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3499
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3500
    ^ nil
139
65eaf1a009f5 warn if method local hides method arg
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3501
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3502
    "Modified: / 31.3.1998 / 17:30:33 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3503
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3504
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3505
parseMethodSpec
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3506
    "parse a methods selector & arg specification;
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3507
     Set selector and methodArgs in the receiver as a side effect.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3508
     Return the receiver or #Error.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3509
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3510
     methodSpec ::= { KEYWORD IDENTIFIER }
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3511
                    | binaryOperator IDENTIFIER
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3512
                    | IDENTIFIER
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3513
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3514
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3515
    |var pos2|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3516
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3517
    tokenType isNil ifTrue:[
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3518
        self nextToken.
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3519
    ].
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3520
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3521
    (tokenType == #Keyword) ifTrue:[
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3522
        selector := ''.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3523
        [tokenType == #Keyword] whileTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3524
            self markMethodSelectorFrom:tokenPosition to:(tokenPosition+tokenName size-1).
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3525
            selector := selector , tokenName.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3526
            self nextToken.
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3527
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3528
            (tokenType ~~ #Identifier) ifTrue:[^ #Error].
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3529
            pos2 := tokenPosition+tokenName size-1.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3530
            self markArgumentIdentifierFrom:tokenPosition to:pos2.
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3531
            var := Variable name:tokenName.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3532
            methodArgs isNil ifTrue:[
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3533
                methodArgs := Array with:var.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3534
                methodArgNames := Array with:tokenName
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3535
            ] ifFalse:[
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3536
                (methodArgNames includes:tokenName) ifTrue:[
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3537
                    "/ argname reuse
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3538
                    self isSyntaxHighlighter ifTrue:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3539
                        self markBadIdentifierFrom:tokenPosition to:pos2.
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3540
                    ] ifFalse:[
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3541
                        self 
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3542
                            syntaxError:'redefinition of ''' , tokenName , ''' in argument list.'
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3543
                            position:tokenPosition to:pos2
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  3544
                    ]
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3545
                ].
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3546
                methodArgs := methodArgs copyWith:var.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3547
                methodArgNames := methodArgNames copyWith:tokenName
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3548
            ].
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3549
            self nextToken
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3550
        ].
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3551
        selector := selector asSymbol.
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  3552
        endOfSelectorPosition := tokenPosition.
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3553
        ^ self
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3554
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3555
    (tokenType == #Identifier) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3556
        self markMethodSelectorFrom:tokenPosition to:(tokenPosition+tokenName size-1).
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3557
        selector := tokenName asSymbol.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3558
        self nextToken.
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  3559
        endOfSelectorPosition := tokenPosition.
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3560
        ^ self
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3561
    ].
461
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3562
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3563
    "/ special handling for |, which is also a lexical token
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3564
    tokenType == $| ifTrue:[
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3565
        tokenType := #BinaryOperator.
1103
b75a71996388 ensure that token follows tomeName & tokenValue
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  3566
        token := tokenName := '|'
461
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3567
    ].
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3568
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3569
    (tokenType == #BinaryOperator) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3570
        self markMethodSelectorFrom:tokenPosition to:(tokenPosition+tokenName size-1).
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3571
        selector := tokenName asSymbol.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3572
        self nextToken.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3573
        (tokenType ~~ #Identifier) ifTrue:[^ #Error].
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3574
        self markArgumentIdentifierFrom:tokenPosition to:(tokenPosition+tokenName size-1).
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3575
        var := Variable name:tokenName.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3576
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3577
"/      methodArgs isNil ifTrue:[
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3578
            methodArgs := Array with:var.
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3579
            methodArgNames := Array with:tokenName.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3580
"/      ] ifFalse:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3581
"/          methodArgs := methodArgs copyWith:var.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3582
"/          methodArgNames := methodArgNames copyWith:tokenName
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3583
"/      ].
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3584
        self nextToken.
878
f9c8d2544909 added declare-as (local, global or workspace-war)
Claus Gittinger <cg@exept.de>
parents: 877
diff changeset
  3585
        endOfSelectorPosition := tokenPosition.
660
f68ddffc6921 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
  3586
        ^ self
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3587
    ].
461
1d24cc165fac oops - did not allow | as method-selector
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  3588
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3589
    ^ #Error
255
13a059f6569d no need to send nextToken when parsing a method
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  3590
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  3591
    "Modified: / 31.3.1998 / 17:31:59 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3592
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  3593
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3594
parsePrimitive
7
6c2bc76f0b8f *** empty log message ***
claus
parents: 4
diff changeset
  3595
    "parse an ST-80 type primitive as '< primitive: nr >';
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3596
     return primitive number or #Error.
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3597
     or a Squeak-style primitive, as '< primitive: string >';
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3598
     return primitive name or #Error.
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3599
97
claus
parents: 96
diff changeset
  3600
     Also, ST-80 style resource specs are parsed; the result is
claus
parents: 96
diff changeset
  3601
     left (as side effect) in primitiveResource. 
claus
parents: 96
diff changeset
  3602
     (maybe someone else knows what to do with it ...)
claus
parents: 96
diff changeset
  3603
     Well, as we now have this mechanism, I'll use it to mark methods which
claus
parents: 96
diff changeset
  3604
     do keyboard processing ... <resource: keyboard ( keys )>
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3605
     For faster finding of used keyboard accelerators,
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3606
     and to mark resource methods (image, menu or canvas resources).
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3607
934
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  3608
     prim ::= st80Primitive | st80Pragma | stxPragma
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3609
              squeakPrimitive | newSTXPrimitive | resourceDecl
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3610
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3611
     st80Primitive ::= 'primitive:' INTEGER
934
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  3612
     st80Pragma    ::= 'exception:' ( 'handle | 'raise' | 'unwind' )
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  3613
     stxPragma     ::= 'context:' 'return'
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  3614
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3615
     squeakPrimitive ::= 'primitive:' STRING
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3616
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3617
     newSTXPrimitive ::= 'primitive'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3618
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3619
     resourceDecl ::= 'resource:' SYMBOL       - leave SYMBOL in primitiveResource
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3620
                    | 'resource:' SYMBOL (...) - leave (SYMBOL (...)) in primitiveResource
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  3621
    "
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3622
1098
fe08dc90f4ac preps for <C: ...> - interface declaration
Claus Gittinger <cg@exept.de>
parents: 1096
diff changeset
  3623
    |primNumber keys resource resourceValue pragmaType cString cParser cType|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3624
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3625
    (tokenType == #Keyword or:[tokenType == #Identifier]) ifFalse:[
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3626
        self parseError:'bad primitive definition (keyword expected)'.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3627
        ^ #Error
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3628
    ].
285
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  3629
60
0db697f03def *** empty log message ***
claus
parents: 56
diff changeset
  3630
    (tokenName = 'primitive:') ifTrue:[
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3631
        self nextToken.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3632
        (tokenType == #Integer) ifFalse:[
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3633
            AllowSqueakExtensions ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3634
                (tokenType == #String) ifFalse:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3635
                    self parseError:'primitive number or name expected'.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3636
                    ^ #Error
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3637
                ]
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3638
            ] ifFalse:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3639
                self parseError:'primitive number expected'.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3640
                ^ #Error
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3641
            ]
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3642
        ].
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3643
        primitiveNr notNil ifTrue:[
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3644
            self parseError:'only one primitive spec allowed'.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3645
            primNumber := -1.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3646
        ] ifFalse:[
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3647
            primNumber := tokenValue.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3648
        ].
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3649
        self nextToken.
1099
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3650
        ((tokenType == #BinaryOperator) and:[tokenName = '>']) ifFalse:[
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3651
            ((tokenType == #Keyword) and:[tokenName = 'errorCode:']) ifTrue:[
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3652
                self nextToken.
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3653
                (tokenType == #Identifier) ifTrue:[
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3654
                    self nextToken.
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3655
                ] ifFalse:[
1112
7a72a7946624 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1111
diff changeset
  3656
                    self halt:'not yet implemented'.
1099
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3657
                ]
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3658
            ].
4432dc77f9a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1098
diff changeset
  3659
        ]
60
0db697f03def *** empty log message ***
claus
parents: 56
diff changeset
  3660
    ] ifFalse:[
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3661
        (tokenName = 'primitive') ifTrue:[
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3662
            self nextToken.
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3663
            primNumber := 0.
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3664
        ] ifFalse:[
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3665
            (tokenName = 'resource:') ifTrue:[
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3666
                self nextToken.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3667
                (tokenType ~~ #Symbol) ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3668
                    self parseError:'symbol expected'.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3669
                    ^ #Error
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3670
                ].
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3671
                primNumber := -1.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3672
                resource := tokenValue.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3673
                resourceValue := true.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3674
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3675
                self nextToken.
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3676
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3677
                tokenType == $( ifTrue:[
1098
fe08dc90f4ac preps for <C: ...> - interface declaration
Claus Gittinger <cg@exept.de>
parents: 1096
diff changeset
  3678
                    self nextToken.
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3679
                    keys := OrderedCollection new.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3680
                    [(tokenType == $)) or:[tokenType == #EOF] ] whileFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3681
                        keys add:tokenValue.
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3682
                        self nextToken.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3683
                    ].
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3684
                    resourceValue := keys.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3685
                    (tokenType == $)) ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3686
                        self parseError:'unterminated primitive/spec (missing '')'')'.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3687
                    ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3688
                    self nextToken.
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3689
                ].
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3690
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3691
                primitiveResource isNil ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3692
                    primitiveResource := IdentityDictionary new.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3693
                ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3694
                primitiveResource at:(resource asSymbol) put:resourceValue.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3695
            ] ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3696
                (tokenName = 'exception:' 
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3697
                or:[tokenName = 'context:']) ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3698
                    pragmaType := tokenName.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3699
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3700
                    self nextToken.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3701
                    (tokenType ~~ #Symbol) ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3702
                        self parseError:'symbol expected'.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3703
                        ^ #Error
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3704
                    ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3705
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3706
                    ((pragmaType = 'exception:'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3707
                        and:[tokenValue == #'handle'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3708
                             or:[tokenValue == #'raise'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3709
                             or:[tokenValue == #'unwind']]])
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3710
                    or:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3711
                        pragmaType = 'context:'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3712
                        and:[(tokenValue == #'return')]])
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3713
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3714
                    ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3715
                        primitiveContextInfo isNil ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3716
                            primitiveContextInfo := Set new.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3717
                        ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3718
                        primitiveContextInfo add:(pragmaType->tokenValue).
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3719
                    ] ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3720
                        self parseError:'unrecognized exception pragma: ' , tokenValue.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3721
                    ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3722
                    self nextToken.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3723
                ] ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3724
                    (tokenName = 'C:') ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3725
                        cString := source upTo:$>.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3726
                        self nextToken.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3727
                        "/ generate that type
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3728
                        cParser := CParser parse:(cString , ';').
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3729
                        cType := cParser types first.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3730
                        primitiveResource "primitiveType" := cType.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3731
                        ^ -1
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3732
                    ] ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3733
                        self parseError:'unrecognized pragma: ' , tokenName.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3734
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3735
                        "/ skip
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3736
                        [tokenType ~~ #EOF] whileTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3737
                            ((tokenType == #BinaryOperator) and:[tokenName = '>']) ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3738
                                self nextToken.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3739
                                ^ -1 "/ primNr.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3740
                            ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3741
                            self nextToken.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3742
                        ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3743
                    ].
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3744
                ]
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3745
            ].
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3746
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3747
    ].
97
claus
parents: 96
diff changeset
  3748
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3749
    ((tokenType == #BinaryOperator) and:[tokenName = '>']) ifFalse:[
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3750
        self parseError:'bad primitive definition (> expected)'.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3751
        ^ #Error
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3752
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3753
    self nextToken.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3754
    ^ primNumber
221
35b92bf6d9ef parse style-resource directive
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
  3755
285
19e8d6d22278 allow multiple resource definitions
Claus Gittinger <cg@exept.de>
parents: 273
diff changeset
  3756
    "Modified: 29.5.1996 / 17:24:09 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3757
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3758
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3759
parsePrimitiveOrResourceSpecOrEmpty
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3760
    "parse a methods primitive or resource spec"
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3761
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3762
    |pos wmsg primNr primNrOrString|
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3763
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3764
    [(tokenType == #BinaryOperator) and:[tokenName = '<']] whileTrue:[
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3765
        "/ an ST-80 primitive or resourceSpec - parsed but ignored
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3766
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3767
        pos := tokenPosition.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3768
        self nextToken.
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3769
        primNrOrString := self parsePrimitive.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3770
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3771
        (primNrOrString == #Error) ifTrue:[^ #Error].
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3772
        wmsg := nil.
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3773
930
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3774
        primNrOrString isString ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3775
            primNr := self primitiveNumberFromName:primNrOrString
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3776
        ] ifFalse:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3777
            primNr := primNrOrString
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3778
        ].
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3779
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3780
        primNr notNil ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3781
            primNr < 0 ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3782
                WarnST80Directives == true ifTrue:[
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3783
                    wmsg := 'ST-80/Squeak directive ignored'.
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3784
                ].
2dadf9a83ed9 also parse #exception pragmas;
Claus Gittinger <cg@exept.de>
parents: 926
diff changeset
  3785
            ] ifFalse:[
1155
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3786
                primNr > 0 ifTrue:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3787
                    primitiveNr := primNr.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3788
                    wmsg := 'ST-80 primitive may not work'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3789
                ] ifFalse:[
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3790
                    primitiveNr := primNr.
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3791
                    wmsg := 'ST/X primitives only work in rel5 and newer'
8cea56f32c57 allow <primitive>
Claus Gittinger <cg@exept.de>
parents: 1152
diff changeset
  3792
                ]
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3793
            ].
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3794
        ].
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3795
        wmsg notNil ifTrue:[self warning:wmsg position:pos]
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3796
    ].
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3797
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3798
    "Created: 27.4.1996 / 16:55:55 / cg"
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3799
    "Modified: 29.5.1996 / 17:25:52 / cg"
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3800
!
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  3801
984
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3802
primitiveNumberFromName:aPrimitiveName
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3803
    "for future compatibility with Squeak ..."
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3804
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3805
    ^ nil
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3806
!
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3807
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3808
statement
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3809
    "parse a statement; return a node-tree or #Error.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3810
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3811
     statement ::= '^' expression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3812
                   | PRIMITIVECODE
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3813
                   | expression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3814
    "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3815
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3816
    |expr node lnr|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3817
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3818
    (tokenType == $^) ifTrue:[
837
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  3819
        self markReturnAt:tokenPosition.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3820
        lnr := tokenLineNr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3821
        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3822
        expr := self expression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3823
        (expr == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3824
        node := ReturnNode expression:expr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3825
        node home:self blockHome:currentBlock.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3826
        (lineNumberInfo == #full) ifTrue:[node lineNumber:lnr].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3827
        ^ node
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3828
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3829
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3830
    (tokenType == #Primitive) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3831
        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3832
        node := PrimitiveNode code:tokenValue.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3833
        node isOptional ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3834
            hasNonOptionalPrimitiveCode := true
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3835
        ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3836
        hasPrimitiveCode := true.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3837
        ^ node
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3838
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3839
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3840
    (tokenType == #EOF) ifTrue:[
733
6859b56d5bd2 better error message for missing ']' at end of block.
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  3841
        currentBlock notNil ifTrue:[
6859b56d5bd2 better error message for missing ']' at end of block.
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  3842
            self syntaxError:'missing '']'' at end of block'.
6859b56d5bd2 better error message for missing ']' at end of block.
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  3843
        ] ifFalse:[
6859b56d5bd2 better error message for missing ']' at end of block.
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  3844
            self syntaxError:'period after last statement'.
6859b56d5bd2 better error message for missing ']' at end of block.
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  3845
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3846
        ^ #Error
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3847
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3848
984
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3849
    (tokenType == $.) ifTrue:[
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3850
        AllowSqueakExtensions == true ifTrue:[
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3851
            "/ allow empty statement
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3852
            ^ StatementNode expression:nil.
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3853
        ].
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3854
    ].
0994fa625709 more squeak-parsing
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
  3855
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3856
    expr := self expression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3857
    (expr == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3858
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3859
"/    classToCompileFor notNil ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3860
"/        currentBlock isNil ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3861
"/            expr isPrimary ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3862
"/                self warning:'useless computation - missing ^ ?'
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3863
"/            ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3864
"/        ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3865
"/    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3866
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3867
    node := StatementNode expression:expr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3868
    (lineNumberInfo == #full) ifTrue:[node lineNumber:lnr].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3869
    ^ node
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3870
837
b09e08bb3d5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
  3871
    "Modified: / 5.1.1980 / 00:45:20 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3872
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3873
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3874
statementList
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3875
    "parse a statementlist; return a node-tree, nil or #Error.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3876
     Statements must be separated by periods.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3877
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3878
     statementList ::= <statement>
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3879
                       | <statementList> . <statement>
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3880
    "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3881
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3882
    |thisStatement prevStatement firstStatement correctIt periodPos
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3883
     prevExpr|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3884
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3885
    thisStatement := self statement.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3886
    (thisStatement == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3887
    firstStatement := thisStatement.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3888
    [tokenType == $.] whileTrue:[
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3889
        prevExpr := thisStatement expression.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3890
        (prevExpr notNil 
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3891
        and:[prevExpr isMessage
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3892
        and:[thisStatement isReturnNode not]]) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3893
            (#(#'=' #'==') includes:prevExpr selector) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3894
                self warning:'useless computation - mistyped assignment ?'
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3895
            ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3896
        ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3897
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3898
        periodPos := tokenPosition.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3899
        self nextToken.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3900
        (tokenType == $]) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3901
            currentBlock isNil ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3902
                self parseError:'block nesting error'.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3903
                errorFlag := true
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3904
"
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3905
            *** I had a warning here (since it was not defined
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3906
            *** in the blue-book; but PD-code contains a lot of
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3907
            *** code with periods at the end so that the warnings
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3908
            *** became annoying
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3909
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3910
            ] ifFalse:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3911
                self warning:'period after last statement' position:periodPos
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3912
"
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3913
            ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3914
            ^ firstStatement
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3915
        ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3916
        (tokenType == #EOF) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3917
            currentBlock notNil ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3918
                self parseError:'block nesting error (expected '']'')'.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3919
                errorFlag := true
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3920
"
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3921
            *** I had a warning here (since it was not defined
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3922
            *** in the blue-book; but PD-code contains a lot of
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3923
            *** code with periods at the end so that the warnings
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3924
            *** became annoying
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3925
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3926
            ] ifFalse:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3927
                self warning:'period after last statement' position:periodPos
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3928
"
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3929
            ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3930
            ^ firstStatement
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3931
        ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3932
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3933
        prevStatement := thisStatement.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3934
        prevStatement isReturnNode ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3935
            self warning:'statements after return' position:tokenPosition
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3936
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3937
"
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3938
        periodPos := tokenPosition.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3939
        self nextToken.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3940
"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3941
988
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3942
        ((tokenType == $]) or:[tokenType == #EOF]) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3943
            (currentBlock isNil and:[tokenType == $]]) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3944
                self parseError:'block nesting error'.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3945
                errorFlag := true
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3946
            ] ifFalse:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3947
                correctIt := self correctableError:'period after last statement in block'
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3948
                                          position:periodPos to:(periodPos + 1).
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3949
                correctIt ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3950
                    (self correctByDeleting == #Error) ifTrue:[
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3951
                        errorFlag := true
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3952
                    ]
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3953
                ]
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3954
            ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3955
            ^ firstStatement
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3956
        ].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3957
        thisStatement := self statement.
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3958
        (thisStatement == #Error) ifTrue:[^ #Error].
5b38d970fb1a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3959
        prevStatement nextStatement:thisStatement
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3960
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3961
    ^ firstStatement
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3962
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3963
    "Modified: 14.4.1997 / 20:46:46 / cg"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3964
! !
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3965
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3966
!Parser methodsFor:'parsing-expressions'!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3967
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3968
array
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3969
    |arr elements elem pos1|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3970
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3971
    pos1 := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3972
    elements := OrderedCollection new:20.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3973
    [tokenType ~~ $) ] whileTrue:[
1165
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  3974
        elem := self arrayConstant.
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  3975
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3976
"/        (elem == #Error) ifTrue:[
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3977
"/            (tokenType == #EOF) ifTrue:[
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3978
"/                self syntaxError:'unterminated array-constant; '')'' expected' 
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3979
"/                        position:pos1 to:tokenPosition
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3980
"/            ].
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3981
"/            ^ #Error
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  3982
"/        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3983
        elem isSymbol ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3984
            self markSymbolFrom:tokenPosition to:(source position-1).
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3985
        ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3986
        elements add:elem.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3987
        self nextToken
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3988
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3989
    arr := Array withAll:elements.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3990
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3991
    (ArraysAreImmutable and:[ImmutableArray notNil]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3992
        arr changeClassTo:ImmutableArray.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3993
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3994
    ^ arr
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3995
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3996
    "Modified: / 14.4.1998 / 17:03:29 / cg"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3997
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3998
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  3999
arrayConstant
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4000
    |val|
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4001
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4002
    (tokenType == #Nil) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4003
        ^ nil
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4004
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4005
    ((tokenType == #Integer) 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4006
    or:[tokenType == #Float]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4007
        ^ tokenValue
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4008
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4009
    ((tokenType == #String)
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4010
    or:[tokenType == #Character]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4011
        ^ tokenValue
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4012
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4013
    (tokenType == #True) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4014
        ^ true
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4015
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4016
    (tokenType == #False) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4017
        ^ false
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4018
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4019
    (tokenType == #Error) ifTrue:[
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  4020
        ^ ParseErrorSignal raise.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4021
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4022
    (tokenType == #BinaryOperator) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4023
        ^ tokenName asSymbol
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4024
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4025
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4026
    "/ some more special symbol consts ...
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4027
    (tokenType == $| ) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4028
        ^ #| 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4029
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4030
    (tokenType == #Self ) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4031
        ^ #'self' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4032
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4033
    (tokenType == #Super ) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4034
        ^ #'super' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4035
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4036
    (tokenType == #Here ) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4037
        ^ #'here' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4038
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4039
    (tokenType == #ThisContext ) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4040
        ^ #'thisContext' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4041
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4042
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4043
    ((tokenType == #Keyword) 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4044
    or:[tokenType == #Identifier]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4045
        ^ tokenName asSymbol
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4046
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4047
    ((tokenType == $()
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4048
    or:[tokenType == #HashLeftParen]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4049
        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4050
        ^ self array
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4051
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4052
    ((tokenType == $[) 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4053
    or:[tokenType == #HashLeftBrack]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4054
        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4055
        ^ self byteArray
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4056
    ].
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4057
    (tokenType == #HashLeftBrace) ifTrue:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4058
        val := self qualifiedName.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4059
        val := QualifiedName for:val name.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4060
        ^ val
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4061
    ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4062
    (tokenType == #Symbol) ifTrue:[
1066
ba626f00f709 remember symbols used in arrayConstant
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  4063
        parseForCode ifFalse:[
ba626f00f709 remember symbols used in arrayConstant
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  4064
            self rememberSymbolUsed:tokenValue.
ba626f00f709 remember symbols used in arrayConstant
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  4065
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4066
        ^ tokenValue
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4067
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4068
    (tokenType == #EOF) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4069
        "just for the better error-hilight; let caller handle error"
1165
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4070
        self syntaxError:'error in array-constant; EOF unexpected'. 
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  4071
        ^ ParseErrorSignal raise.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4072
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4073
    self syntaxError:('error in array-constant; ' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4074
                      , tokenType printString 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4075
                      , ' unexpected').
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  4076
    ^ ParseErrorSignal raise.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4077
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4078
    "Modified: / 14.4.1998 / 18:22:54 / cg"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4079
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4080
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4081
binaryExpression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4082
    "parse a binary-expression; return a node-tree, nil or #Error"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4083
1061
457156ffedec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
  4084
    |receiver theReceiver arg sel pos try lno note|
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4085
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4086
    receiver := self unaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4087
    (receiver == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4088
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4089
    "special kludge: since Scanner cannot know if -digit is a binary
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4090
     expression or a negative constant, handle cases here"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4091
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4092
    [(tokenType == #BinaryOperator) 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4093
     or:[(tokenType == $|)
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4094
         or:[((tokenType == #Integer) or:[tokenType == #Float])
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4095
             and:[tokenValue < 0]]]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4096
    ] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4097
        pos := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4098
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4099
        lno := tokenLineNr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4100
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4101
        "kludge here: bar and minus are not scanned as binop "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4102
        (tokenType == $|) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4103
            sel := '|'.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4104
            self nextToken
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4105
        ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4106
            (tokenType == #BinaryOperator) ifTrue:[
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4107
                sel := tokenName.
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4108
                sel := self selectorCheck:sel for:receiver position:tokenPosition to:(tokenPosition + tokenName size - 1).
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4109
                self nextToken
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4110
            ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4111
                sel := '-'.
1103
b75a71996388 ensure that token follows tomeName & tokenValue
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  4112
                token := tokenValue := tokenValue negated
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4113
            ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4114
        ].
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4115
        self markSelector:sel from:pos to:(pos + sel size - 1) receiverNode:receiver.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4116
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4117
        arg := self unaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4118
        (arg == #Error) ifTrue:[^ #Error].
1061
457156ffedec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
  4119
        theReceiver := receiver.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4120
        try := BinaryNode receiver:receiver selector:sel arg:arg fold:foldConstants.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4121
        (try isMemberOf:String) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4122
            self parseError:try position:pos to:tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4123
            errorFlag := false. "ok, user wants it - so he'll get it"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4124
            receiver := BinaryNode receiver:receiver selector:sel arg:arg fold:nil.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4125
        ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4126
            receiver := try
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4127
        ].
903
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4128
        note := self plausibilityCheck:receiver.
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4129
        note notNil ifTrue:[
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4130
            self warning:note position:pos to:tokenPosition
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4131
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4132
        receiver lineNumber:lno.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4133
        receiver selectorPosition:pos.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4134
        parseForCode ifFalse:[
1061
457156ffedec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
  4135
            self rememberSelectorUsed:sel receiver:theReceiver
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4136
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4137
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4138
    ^ receiver
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4139
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4140
    "Modified: / 9.1.1998 / 19:05:18 / stefan"
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4141
    "Modified: / 19.1.2000 / 16:22:04 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4142
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4143
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4144
byteArray
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4145
    "started with ST-80 R4 - allow byteArray constants as #[ ... ]"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4146
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4147
    |bytes index limit newArray elem pos1 pos2|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4148
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4149
    pos1 := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4150
    bytes := ByteArray uninitializedNew:5000.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4151
    index := 0. limit := 5000.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4152
    [tokenType ~~ $] ] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4153
	pos2 := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4154
	"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4155
	 this is not good programming style, but speeds up
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4156
	 reading of huge byte arrays (i.e. stored Images ...)
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4157
	"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4158
	(tokenType == #Integer) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4159
	    elem := tokenValue
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4160
	] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4161
	    elem := self arrayConstant.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4162
	    (elem == #Error) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4163
		(tokenType == #EOF) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4164
		    self syntaxError:'unterminated bytearray-constant; '']'' expected' 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4165
			    position:pos1 to:tokenPosition
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4166
		].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4167
		^ #Error
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4168
	    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4169
	].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4170
	((elem isMemberOf:SmallInteger) and:[elem between:0 and:255]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4171
	    index := index + 1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4172
	    bytes at:index put:elem.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4173
	    index == limit ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4174
		newArray := ByteArray uninitializedNew:(limit * 2).
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4175
		newArray replaceFrom:1 to:limit with:bytes startingAt:1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4176
		limit := limit * 2.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4177
		bytes := newArray
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4178
	    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4179
	] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4180
	    self parseError:'invalid ByteArray element' position:pos2 to:tokenPosition - 1
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4181
	].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4182
	self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4183
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4184
    newArray := ByteArray uninitializedNew:index.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4185
    newArray replaceFrom:1 to:index with:bytes startingAt:1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4186
    ^ newArray
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4187
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4188
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4189
degeneratedKeywordExpressionForSelector
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4190
    "parse a keyword-expression without receiver - for the selector
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4191
     only. return the selector or nil. This is not used in normal parsing,
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4192
     but instead to extract the selector from a code fragment.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4193
     (for example, the system browsers implementors-function uses this)"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4194
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4195
    |sel arg rec|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4196
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4197
    (tokenType == #Keyword) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4198
	sel := tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4199
	self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4200
	arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4201
	(arg == #Error) ifTrue:[^ sel].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4202
	[tokenType == #Keyword] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4203
	    sel := sel , tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4204
	    self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4205
	    arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4206
	    (arg == #Error) ifTrue:[^ sel].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4207
	].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4208
	^ sel
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4209
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4210
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4211
    (rec := self primary) ~~ #Error ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4212
	sel := self degeneratedKeywordExpressionForSelector.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4213
	sel isNil ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4214
	    rec isMessage ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4215
		sel := rec selector
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4216
	    ] ifFalse:[        
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4217
		rec isAssignment ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4218
		    rec expression isMessage ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4219
			sel := rec expression selector
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4220
		    ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4221
		]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4222
	    ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4223
	]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4224
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4225
    ^ sel
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4226
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4227
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4228
expression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4229
    "parse a cascade-expression; return a node-tree, nil or #Error.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4230
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4231
     expression ::= keywordExpression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4232
                    | keywordExpression cascade
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4233
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4234
     cascade ::= ';' expressionSendPart
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4235
                 | cascade ';' expressionSendPart
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4236
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4237
     expressionSendPart ::= { KEYWORD binaryExpression }
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4238
                            | BINARYOPERATOR unaryExpression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4239
                            | IDENTIFIER
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4240
    "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4241
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4242
    |receiver arg sel args pos pos2 lno tokenEnd realReceiver positions|
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4243
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4244
    pos := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4245
    receiver := self keywordExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4246
    (receiver == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4247
    (tokenType == $;) ifTrue:[
743
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4248
        receiver isMessage ifFalse:[
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4249
            self syntaxError:'left side of cascade must be a message expression'
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4250
                    position:pos to:tokenPosition.
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4251
            realReceiver := receiver. "/ only to allow continuing.
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4252
        ] ifTrue:[
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4253
            realReceiver := receiver receiver.
3ced4791090c changes for cascades to super/here semantics.
Claus Gittinger <cg@exept.de>
parents: 739
diff changeset
  4254
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4255
        [tokenType == $;] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4256
            self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4257
            (tokenType == #Identifier) ifTrue:[
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4258
                tokenEnd := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4259
                self markSelector:tokenName from:tokenPosition to:tokenEnd receiverNode:realReceiver.
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4260
                sel := tokenName.
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4261
                sel := self selectorCheck:tokenName for:realReceiver position:tokenPosition to:tokenEnd.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4262
                receiver := CascadeNode receiver:receiver selector:sel.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4263
                receiver lineNumber:tokenLineNr.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4264
                parseForCode ifFalse:[
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4265
                    self rememberSelectorUsed:sel
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4266
                ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4267
                self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4268
            ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4269
                (tokenType == #BinaryOperator) ifTrue:[
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4270
                    tokenEnd := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4271
                    self markSelector:tokenName from:tokenPosition to:tokenEnd receiverNode:realReceiver.
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4272
                    sel := tokenName.
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4273
                    sel := self selectorCheck:tokenName for:realReceiver position:tokenPosition to:tokenEnd.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4274
                    lno := tokenLineNr. 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4275
                    self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4276
                    arg := self unaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4277
                    (arg == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4278
                    receiver := CascadeNode receiver:receiver selector:sel arg:arg.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4279
                    receiver lineNumber:lno.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4280
                    parseForCode ifFalse:[
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4281
                        self rememberSelectorUsed:sel
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4282
                    ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4283
                ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4284
                    (tokenType == #Keyword) ifTrue:[
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4285
                        tokenEnd := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4286
                        positions := OrderedCollection with:(tokenPosition to:tokenEnd).
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4287
                        pos := tokenPosition.
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4288
                        pos2 := tokenEnd.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4289
                        lno := tokenLineNr. 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4290
                        sel := tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4291
                        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4292
                        arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4293
                        (arg == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4294
                        args := Array with:arg.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4295
                        [tokenType == #Keyword] whileTrue:[
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4296
                            tokenEnd := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4297
                            positions add:(tokenPosition to:tokenEnd).
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4298
                            sel := sel , tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4299
                            self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4300
                            arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4301
                            (arg == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4302
                            args := args copyWith:arg.
739
18bce3ea44f5 fixed syntax-highlight for cascade-selectors.
Claus Gittinger <cg@exept.de>
parents: 738
diff changeset
  4303
                            pos2 := tokenEnd
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4304
                        ].
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4305
                        sel := self selectorCheck:sel for:realReceiver position:pos to:pos2.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4306
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4307
                        positions do:[:p |
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4308
                            self markSelector:sel from:p start to:p stop receiverNode:realReceiver.
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4309
                        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4310
                        receiver := CascadeNode receiver:receiver selector:sel args:args.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4311
                        receiver lineNumber:lno.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4312
                        parseForCode ifFalse:[
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4313
                            self rememberSelectorUsed:sel
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4314
                        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4315
                    ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4316
                        (tokenType == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4317
                        self syntaxError:('invalid cascade; ' , tokenType printString , ' unexpected')
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4318
                                position:tokenPosition to:source position - 1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4319
                        ^ #Error
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4320
                    ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4321
                ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4322
            ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4323
        ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4324
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4325
        "obscure (unspecified ?) if selector follows; Question:
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4326
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4327
        is
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4328
                'expr sel1; sel2 sel3'
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4329
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4330
        to be parsed as: 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4331
                (t := expr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4332
                 t sel1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4333
                 t sel2) sel3
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4334
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4335
         or:
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4336
                (t := expr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4337
                 t sel1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4338
                 t sel2 sel3)
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4339
        "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4340
        ((tokenType == #Identifier) 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4341
         or:[(tokenType == #BinaryOperator)
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4342
             or:[tokenType == #Keyword]]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4343
            self syntaxError:'ambigous cascade - please group using ( ...)'
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4344
                    position:tokenPosition to:source position - 1.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4345
            ^ #Error
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4346
        ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4347
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4348
    ^ receiver
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4349
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4350
    "Modified: / 19.1.2000 / 16:22:16 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4351
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4352
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4353
keywordExpression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4354
    "parse a keyword-expression; return a node-tree, nil or #Error.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4355
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4356
     keywordExpression ::= binaryexpression
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4357
                           | { KEYWORD-PART binaryExpression }
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4358
    "
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4359
1065
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  4360
    |lastReceiver receiver sel arg args posR1 posR2 pos1 pos2 try lno note positions|
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4361
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4362
    posR1 := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4363
    receiver := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4364
    (receiver == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4365
    (tokenType == #Keyword) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4366
        pos1 := posR2 := tokenPosition.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4367
        pos2 := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4368
        positions := OrderedCollection with:(pos1 to:pos2).
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4369
        sel := tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4370
        lno := tokenLineNr.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4371
        self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4372
        arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4373
        (arg == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4374
        args := Array with:arg.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4375
        [tokenType == #Keyword] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4376
            sel := sel , tokenName.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4377
            pos2 := tokenPosition + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4378
            positions add:(tokenPosition to:pos2).
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4379
            self nextToken.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4380
            arg := self binaryExpression.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4381
            (arg == #Error) ifTrue:[^ #Error].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4382
            args := args copyWith:arg.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4383
        ].
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4384
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4385
        positions do:[:p |
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4386
            self markSelector:sel from:p start to:p stop receiverNode:receiver.
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4387
        ].
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4388
        sel := self selectorCheck:sel for:receiver position:pos1 to:pos2.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  4389
1149
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4390
        ignoreErrors ifFalse:[
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4391
            (Class definitionSelectors includes:sel) ifTrue:[
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4392
                receiver isVariable ifTrue:[
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4393
                    receiver isUndeclared ifTrue:[
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4394
                        self parseError:('undefined superclass: ' , receiver name) position:pos1 to:pos2.
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4395
                    ].
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4396
                ]
8f419e76812c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
  4397
            ].
964
5fa44b4ff2cb check for undeclared class when evaluating subclass
Claus Gittinger <cg@exept.de>
parents: 944
diff changeset
  4398
        ].
5fa44b4ff2cb check for undeclared class when evaluating subclass
Claus Gittinger <cg@exept.de>
parents: 944
diff changeset
  4399
1065
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  4400
        lastReceiver := receiver.
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4401
        try := MessageNode receiver:receiver selector:sel args:args fold:foldConstants.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4402
        (try isMemberOf:String) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4403
            self parseError:try position:pos1 to:pos2.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4404
            errorFlag := false. "ok, user wants it - so he'll get it"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4405
            receiver := MessageNode receiver:receiver selector:sel args:args fold:nil.
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4406
        ] ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4407
            receiver := try
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4408
        ].
903
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4409
        note := self plausibilityCheck:receiver.
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4410
        note notNil ifTrue:[
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4411
            self warning:note position:pos1 to:pos2
038c2c447dcf always do plausibility checks
Claus Gittinger <cg@exept.de>
parents: 897
diff changeset
  4412
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4413
        receiver lineNumber:lno.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4414
        parseForCode ifFalse:[
1065
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  4415
            self rememberSelectorUsed:sel receiver:lastReceiver
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  4416
        ].
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4417
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4418
        (sel = #and: 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4419
        or:[sel = #or:]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4420
            receiver arg1 isBlock ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4421
                self warnCommonMistake:'(possible common mistake) missing block brackets ?'
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4422
                              position:pos2+1 to:tokenPosition-1
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4423
            ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4424
        ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4425
        (sel = #whileTrue: 
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4426
        or:[sel = #whileFalse:]) ifTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4427
            receiver receiver isBlock ifFalse:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4428
                self warnCommonMistake:'(possible common mistake) missing block brackets ?'
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4429
                              position:posR1 to:posR2-1
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4430
            ]
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4431
        ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4432
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4433
    ^ receiver
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4434
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  4435
    "Modified: / 19.1.2000 / 16:22:22 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4436
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  4437
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4438
primary
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4439
    "parse a primary-expression; return a node-tree, nil or #Error.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4440
     This also cares for namespace-access-pathes."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4441
390
5ba190b979d4 warn about another beginners error
Claus Gittinger <cg@exept.de>
parents: 387
diff changeset
  4442
    |val var expr pos name t cls nameSpace nameSpaceGlobal globlName lnr node
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4443
     pos2 eMsg exprList rawName|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4444
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4445
    pos := tokenPosition.
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4446
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4447
    (tokenType == #Self) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4448
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4449
        (self noAssignmentAllowed:'assignment to pseudo variable ''self''' at:pos) ifFalse:[
1062
119b394e10b5 parse bug: #(#Error)
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
  4450
            ^ ParseError raise
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4451
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4452
        selfNode isNil ifTrue:[ 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4453
            selfNode := SelfNode value:selfValue
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4454
        ].
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  4455
        self markSelfFrom:pos to:pos+3.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4456
        ^ selfNode
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4457
    ].
869
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4458
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4459
    (tokenType == #Identifier) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4460
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4461
         must check for variable first, to be backward compatible
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4462
         with other smalltalks. 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4463
        "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4464
        tokenName = 'here' ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4465
            (self variableOrError:tokenName) == #Error ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4466
                tokenType := #Here.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4467
                warnSTXHereExtensionUsed ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4468
                    self warning:'here-sends are a nonstandard feature of ST/X' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4469
                         position:pos to:pos+3.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4470
                    "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4471
                     only warn once
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4472
                    "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4473
                    warnSTXHereExtensionUsed := false
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  4474
                ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4475
            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4476
        ]
49
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4477
    ].
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4478
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4479
    (tokenType == #Identifier) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4480
        name := tokenName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4481
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4482
        var := self variable.
1091
0c8426791571 debug code (disabled)
Claus Gittinger <cg@exept.de>
parents: 1090
diff changeset
  4483
        "/ errorFlag == true ifTrue:[self halt].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4484
        (var == #Error) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4485
            errorFlag := true
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4486
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4487
        self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4488
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4489
        (tokenType == #'::') ifTrue:[
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4490
            globlName := rawName := name.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4491
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4492
            "is it in a namespace ?"
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4493
            nameSpace := self findNameSpaceWith:globlName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4494
            nameSpace notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4495
                globlName := nameSpace name , '::' , globlName
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4496
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4497
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4498
            [tokenType == #'::'] whileTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4499
                nameSpace := globlName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4500
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4501
                self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4502
                (tokenType == #Identifier) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4503
                    ignoreWarnings ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4504
                        warnSTXNameSpaceUse ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4505
                            self warning:'nameSpaces are a nonstandard feature of ST/X' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4506
                                 position:pos to:(source position).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4507
                            "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4508
                             only warn once
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4509
                            "
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4510
                            warnSTXNameSpaceUse := false
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4511
                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4512
                    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4513
                    name := tokenName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4514
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4515
                    globlName := (nameSpace , '::' , name).
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4516
                    rawName := (rawName , '::' , name).
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4517
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4518
                    nameSpaceGlobal := Smalltalk at:nameSpace asSymbol ifAbsent:nil.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4519
                    nameSpaceGlobal isNil ifTrue:[
915
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4520
                        warnedUnknownNamespaces isNil ifTrue:[
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4521
                            warnedUnknownNamespaces := Set new.
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4522
                        ].
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4523
                        (warnedUnknownNamespaces includes:nameSpace) ifFalse:[
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4524
                            self warning:('unknown nameSpace: ', nameSpace) 
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4525
                                 position:pos to:tokenPosition-1.
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4526
"/                            self parseError:('unknown nameSpace: ', nameSpace) position:pos to:tokenPosition-1.
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4527
                            warnedUnknownNamespaces add:nameSpace.
d3add8c1bb04 dont rewarn for same missing namespace
Claus Gittinger <cg@exept.de>
parents: 903
diff changeset
  4528
                        ]
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4529
                    ] ifFalse:[
1040
543ba303a6d3 #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 1039
diff changeset
  4530
                        nameSpaceGlobal isNameSpace ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4531
                            "/ for now: only Smalltalk is allowed
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4532
                            nameSpaceGlobal ~~ Smalltalk ifTrue:[
424
9f8ffd4289a4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4533
"/                                self parseError:('(currently) the only valid nameSpace is `Smalltalk''') position:pos to:tokenPosition-1.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4534
                            ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4535
                                globlName := name
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4536
                            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4537
                        ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4538
                            nameSpaceGlobal isBehavior ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4539
                                self parseError:('invalid nameSpace: ' , nameSpace)  position:pos to:tokenPosition-1.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4540
                            ] ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4541
                                (nameSpaceGlobal privateClassesAt:name asSymbol) isNil ifTrue:[
647
c59efd909f71 treat missing nameSpaces as warning
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
  4542
                                    self warning:('no private class: ' , name , ' in class: ' , nameSpace) 
c59efd909f71 treat missing nameSpaces as warning
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
  4543
                                         position:pos to:tokenPosition-1.
c59efd909f71 treat missing nameSpaces as warning
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
  4544
"/                                    self parseError:('no private class: ' , name , ' in class: ' , nameSpace)  position:pos to:tokenPosition-1.                                
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4545
                                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4546
                            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4547
                        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4548
                    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4549
                    self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4550
                ].
938
fd785e8e0cf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
  4551
                var := VariableNode type:#GlobalVariable name:globlName asSymbol.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4552
                parseForCode ifFalse:[self rememberGlobalUsed:globlName].
869
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4553
            ].
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4554
            self markVariable:var from:pos to:pos + rawName size - 1.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4555
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4556
869
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4557
        var == #Error ifTrue:[
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4558
            ^ #Error
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4559
        ].
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  4560
1089
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  4561
        errorFlag ~~ true ifTrue:[
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  4562
            self markVariable:var from:pos to:pos + name size - 1.
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  4563
        ].
1100
2a5a68297030 dont set error flag, when not parsing for code and
Claus Gittinger <cg@exept.de>
parents: 1099
diff changeset
  4564
        (ignoreErrors or:[ignoreWarnings or:[parseForCode not]]) ifTrue:[
2a5a68297030 dont set error flag, when not parsing for code and
Claus Gittinger <cg@exept.de>
parents: 1099
diff changeset
  4565
            errorFlag := false.
2a5a68297030 dont set error flag, when not parsing for code and
Claus Gittinger <cg@exept.de>
parents: 1099
diff changeset
  4566
        ].
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4567
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4568
        ((tokenType ~~ $_) and:[tokenType ~~ #':=']) ifTrue:[
1077
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  4569
            parseForCode ifFalse:[
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  4570
                var isInstanceVariable ifTrue:[ self rememberInstVarRead:var name].
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  4571
                var isClassVariable ifTrue:[ self rememberClassVarRead:var name].
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  4572
            ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4573
            ^ var
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4574
        ].
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4575
        pos2 := tokenPosition + tokenType size - 1.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4576
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4577
        "/ careful: it could already be an implicit self send
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4578
        ImplicitSelfSends ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4579
            var isMessage ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4580
                self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4581
                expr := self expression.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4582
                self isSyntaxHighlighter ifFalse:[
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4583
                    (errorFlag or:[expr == #Error]) ifTrue:[^ #Error].
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4584
                ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4585
                selfNode isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4586
                    selfNode := SelfNode value:selfValue
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4587
                ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4588
                ^ MessageNode receiver:selfNode selector:('implicit_' , name , ':') asSymbol arg:expr.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4589
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4590
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4591
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4592
        (var ~~ #Error) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4593
            t := var type.
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4594
            (t ~~ #MethodVariable) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4595
                (t == #PrivateClass) ifTrue:[
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4596
                    self parseError:'assignment to private class' position:pos to:pos2.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4597
                ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4598
                    (t == #MethodArg) ifTrue:[
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4599
                        self parseError:'assignment to method argument' position:pos to:pos2.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4600
                    ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4601
                        (t == #BlockArg) ifTrue:[
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4602
                            self parseError:'assignment to block argument' position:pos to:pos2.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4603
                        ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4604
                            (t == #InstanceVariable) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4605
                                name := self classesInstVarNames at:(var index).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4606
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4607
                                "/ ca once did this to `name' and wondered what happened to his class ...
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4608
                                "/ (not really a beginners bug, but may happen as a typo or missing local variable;
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4609
                                "/  and is hard to track down later)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4610
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4611
                                warnCommonMistakes ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4612
                                    classToCompileFor isMeta ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4613
                                        (classToCompileFor isSubclassOf:Class) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4614
                                            (Class allInstVarNames includes:(var name)) ifTrue:[
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4615
                                                self warning:'assignment to a classInstanceVariable\(see hierarchy of `Class'')' withCRs position:pos to:pos2.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4616
                                            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4617
                                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4618
                                    ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4619
                                ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4620
                                parseForCode ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4621
                                    modifiedInstVars isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4622
                                        modifiedInstVars := Set new
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4623
                                    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4624
                                    modifiedInstVars add:name
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4625
                                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4626
                            ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4627
                                (t == #ClassVariable) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4628
                                    name := var name.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4629
                                    name := name copyFrom:((name indexOf:$:) + 1).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4630
                                    parseForCode ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4631
                                        modifiedClassVars isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4632
                                            modifiedClassVars := Set new
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4633
                                        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4634
                                        modifiedClassVars add:name
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4635
                                    ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4636
                                ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4637
                                    (t == #GlobalVariable) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4638
                                        (cls := Smalltalk classNamed:var name) notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4639
                                            cls name = var name ifTrue:[
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4640
                                                self warning:'assignment to global which refers to a class' position:pos to:pos2.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4641
                                            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4642
                                        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4643
                                        parseForCode ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4644
                                            modifiedGlobals isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4645
                                                modifiedGlobals := Set new
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4646
                                            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4647
                                            modifiedGlobals add:var name
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4648
                                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4649
                                    ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4650
                                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4651
                            ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4652
                        ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4653
                    ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4654
                ]
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4655
            ].
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4656
            t == #MethodVariable ifTrue:[
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4657
                modifiedLocalVars isNil ifTrue:[
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4658
                    modifiedLocalVars := Set new.
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4659
                ].
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4660
                modifiedLocalVars add:var name.
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  4661
            ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4662
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4663
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4664
        lnr := tokenLineNr.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4665
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4666
        self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4667
        pos2 := tokenPosition.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4668
        expr := self expression.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4669
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4670
        "/ a typical beginner error:
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4671
        "/   expr ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4672
        "/      var := super
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4673
        "/   ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4674
        "/      var := something-else
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4675
        "/   ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4676
        "/   var messageSend
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4677
        "/
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4678
        "/   does not what a beginner might think.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4679
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4680
        self isSyntaxHighlighter ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4681
            (expr == #Error) ifTrue:[^ #Error].
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4682
        ] ifFalse:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4683
            warnCommonMistakes ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4684
                (expr ~~ #Error and:[expr isSuper]) ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4685
                    self warning:'followup messageSends to `' , var name , ''' will have normal send semantics\(i.e. NO super- or here-sends). Use self to avoid confusion.' withCRs position:pos to:pos2.
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4686
                ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4687
            ].
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4688
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4689
            (errorFlag or:[expr == #Error]) ifTrue:[^ #Error].
1169
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4690
            expr isVariable ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4691
                expr name = var name ifTrue:[
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4692
                    self warning:('useless assignment to `' , var name, '''' ) position:pos to:pos2-1.
7204e72c7c3c better error message with bad parentNesting in a block.
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
  4693
                ].
1069
04191c055389 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  4694
            ].
04191c055389 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  4695
        ].
04191c055389 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  4696
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4697
        node := AssignmentNode variable:var expression:expr.
712
030ecb63e06f lineNr -> lineNumber
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  4698
        (lineNumberInfo == #full) ifTrue:[node lineNumber:lnr].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4699
        ^ node
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4700
    ].
49
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4701
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4702
    ((tokenType == #Integer) 
120
claus
parents: 117
diff changeset
  4703
     or:[(tokenType == #String)
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4704
     or:[(tokenType == #Character) 
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4705
     or:[(tokenType == #Float)
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4706
     or:[(tokenType == #Symbol)]]]]) ifTrue:[
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4707
        "/
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4708
        "/ ImmutableStrings are experimental
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4709
        "/
752
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4710
        ((tokenType == #String)
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4711
        and:[(StringsAreImmutable == true) 
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4712
        and:[ImmutableString notNil]]) ifTrue:[
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4713
            tokenValue := tokenValue copy.
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4714
            tokenValue changeClassTo:ImmutableString.
1103
b75a71996388 ensure that token follows tomeName & tokenValue
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  4715
            token := tokenValue
752
dc6c757579b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
  4716
        ].
1064
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  4717
        (tokenType == #Symbol) ifTrue:[
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  4718
            parseForCode ifFalse:[
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  4719
                self rememberSymbolUsed:tokenValue
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  4720
            ].
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  4721
        ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4722
        val := ConstantNode type:tokenType value:tokenValue.
1085
efdc7aaf7e54 fixed highlighting of symbol-literals
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  4723
efdc7aaf7e54 fixed highlighting of symbol-literals
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  4724
        tokenValue isSymbol ifTrue:[
efdc7aaf7e54 fixed highlighting of symbol-literals
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  4725
            self markSymbolFrom:tokenPosition to:tokenPosition+tokenValue size-1.
efdc7aaf7e54 fixed highlighting of symbol-literals
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  4726
        ].
efdc7aaf7e54 fixed highlighting of symbol-literals
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  4727
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4728
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4729
        (self noAssignmentAllowed:'assignment to a constant' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4730
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4731
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4732
        ^ val
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4733
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4734
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4735
    (tokenType == #Nil) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4736
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4737
        (self noAssignmentAllowed:'assignment to ''nil''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4738
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4739
        ].
670
7358611ae2a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 668
diff changeset
  4740
"/        self markConstantFrom:pos to:pos+2.
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  4741
        nilNode isNil ifTrue:[ 
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  4742
            nilNode := ConstantNode type:#Nil value:nil
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  4743
        ].
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  4744
        ^ nilNode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4745
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4746
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4747
    (tokenType == #True) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4748
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4749
        (self noAssignmentAllowed:'assignment to ''true''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4750
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4751
        ].
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4752
        self markBooleanConstantFrom:pos to:pos+3.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4753
        ^ ConstantNode type:#True value:true
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4754
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4755
    (tokenType == #False) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4756
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4757
        (self noAssignmentAllowed:'assignment to ''false''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4758
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4759
        ].
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4760
        self markBooleanConstantFrom:pos to:pos+4.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4761
        ^ ConstantNode type:#False value:false
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4762
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4763
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4764
    (tokenType  == #Super) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4765
        usesSuper := true.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4766
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4767
        (self noAssignmentAllowed:'assignment to pseudo variable ''super''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4768
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4769
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4770
        (classToCompileFor isNil or:[classToCompileFor superclass isNil]) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4771
            self warning:'superclass is (currently ?) nil' position:pos to:(pos + 4).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4772
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4773
        superNode isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4774
            superNode := SuperNode value:selfValue inClass:classToCompileFor
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4775
        ].
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4776
        self markSelfFrom:pos to:pos+4.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4777
        ^ superNode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4778
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4779
49
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4780
    (tokenType  == #Here) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4781
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4782
        (self noAssignmentAllowed:'assignment to pseudo variable ''here''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4783
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4784
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4785
        classToCompileFor isNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4786
            self warning:'in which class are you ?' position:pos to:(pos + 3).
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4787
        ].
869
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  4788
        self markSelfFrom:pos to:pos+3.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4789
        ^ SuperNode value:selfValue inClass:classToCompileFor here:true
49
02660b790c3e *** empty log message ***
claus
parents: 47
diff changeset
  4790
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4791
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4792
    (tokenType == #ThisContext) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4793
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4794
        (self noAssignmentAllowed:'assignment to pseudo variable ''thisContext''' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4795
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4796
        ].
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  4797
        self markIdentifierFrom:pos to:pos+10.
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4798
        ^ VariableNode type:#ThisContext context:contextToEvaluateIn. "/ often nil
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4799
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4800
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4801
    (tokenType == #HashLeftParen) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4802
        self nextToken.
1165
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4803
        ParseErrorSignal handle:[:ex |
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4804
            ^ #Error
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4805
        ] do:[
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4806
            val := self array.
09d40e1ff75d oops - invalid literal array const was not signalling an error
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
  4807
        ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4808
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4809
        (self noAssignmentAllowed:'assignment to a constant' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4810
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4811
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4812
        ^ ConstantNode type:#Array value:val
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4813
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4814
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4815
    (tokenType == #HashLeftBrace) ifTrue:[
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4816
        val := self qualifiedName.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4817
        self nextToken.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4818
        ^ val.
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4819
    ].
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4820
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4821
    (tokenType == #HashLeftBrack) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4822
        self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4823
        val := self byteArray.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4824
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4825
        (self noAssignmentAllowed:'assignment to a constant' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4826
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4827
        ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4828
        ^ ConstantNode type:#ByteArray value:val
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4829
    ].
432
2b7b75f1ee12 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 429
diff changeset
  4830
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4831
    (tokenType == $() ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4832
        self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4833
        val := self expression.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4834
        (val == #Error) ifTrue:[^ #Error].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4835
        (tokenType ~~ $) ) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4836
            tokenType isCharacter ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4837
                eMsg := 'missing '')'' (i.e. ''' , tokenType asString , ''' unexpected)'.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4838
            ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4839
                eMsg := 'missing '')'''.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4840
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4841
            self syntaxError:eMsg withCRs position:pos to:tokenPosition.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4842
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4843
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4844
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4845
        (self noAssignmentAllowed:'invalid assignment' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4846
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4847
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4848
        val parenthized:true.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4849
        ^ val
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4850
    ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4851
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4852
    (tokenType == $[ ) ifTrue:[
673
0c66b7cb1d2f checkin from browser
ca
parents: 672
diff changeset
  4853
        self markBracketAt:tokenPosition.
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4854
        val := self block.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4855
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4856
        (self noAssignmentAllowed:'invalid assignment' at:pos) ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4857
            ^ #Error
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4858
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4859
        ^ val
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4860
    ].
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
  4861
894
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4862
    (tokenType == ${ ) ifTrue:[
897
346df366b4d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 894
diff changeset
  4863
        AllowSqueakExtensions ifFalse:[
894
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4864
            self parseError:'non-Standard Squeak extension (enable in settings)' position:pos to:tokenPosition.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4865
            ^ #Error
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4866
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4867
        self nextToken.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4868
        exprList := self squeakComputedArray.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4869
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4870
        tokenType ~~ $} ifTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4871
            self parseError:'''}'' expected' position:tokenPosition.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4872
            ^ #Error
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4873
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4874
        self nextToken.
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  4875
        (self noAssignmentAllowed:'invalid assignment' at:pos) ifFalse:[
894
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4876
            ^ #Error
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4877
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4878
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4879
        "/ make it an array creation expression ...
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4880
        expr := MessageNode 
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4881
                receiver:(VariableNode type:#GlobalVariable name:#Array)
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4882
                selector:#new:
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4883
                arg:(ConstantNode type:#Integer value:(exprList size)).
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4884
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4885
        exprList size == 0 ifTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4886
            ^ expr.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4887
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4888
        exprList keysAndValuesDo:[:idx :e |
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4889
            expr := (idx == 1 ifTrue:[MessageNode] ifFalse:[CascadeNode])
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4890
                        receiver:expr
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4891
                        selector:#at:put:
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4892
                        arg1:(ConstantNode type:#Integer value:idx)
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4893
                        arg2:e
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4894
                        fold:false.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4895
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4896
        expr := CascadeNode
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4897
                    receiver:expr
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4898
                    selector:#yourself.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4899
        ^ expr
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4900
    ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4901
502
410af1c0df1d parse primitive-primary expression
Claus Gittinger <cg@exept.de>
parents: 501
diff changeset
  4902
    (tokenType == #Primitive) ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4903
        self nextToken.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4904
        node := PrimitiveNode code:tokenValue.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4905
        hasNonOptionalPrimitiveCode := true.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4906
        hasPrimitiveCode := true.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4907
        ^ node
502
410af1c0df1d parse primitive-primary expression
Claus Gittinger <cg@exept.de>
parents: 501
diff changeset
  4908
    ].
410af1c0df1d parse primitive-primary expression
Claus Gittinger <cg@exept.de>
parents: 501
diff changeset
  4909
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4910
    (tokenType == #Error) ifTrue:[^ #Error].
44
74ddc944c27f *** empty log message ***
claus
parents: 35
diff changeset
  4911
    tokenType isCharacter ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4912
        self syntaxError:('error in primary; ' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4913
                           , tokenType printString , 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4914
                           ' unexpected') position:tokenPosition to:tokenPosition
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4915
    ] ifFalse:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4916
        (#(BinaryOperator Keyword) includes:tokenType) ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4917
            eMsg := ('error in primary; ' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4918
                    , tokenType printString , '(' , tokenName , ') ' ,
805
b11dcd88bcc6 better error-display
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  4919
                    ' unexpected (missing receiver ?)')
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4920
        ] ifFalse:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4921
            eMsg := ('error in primary; ' 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4922
                     , tokenType printString ,
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4923
                     ' unexpected') 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4924
        ].
805
b11dcd88bcc6 better error-display
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  4925
        self syntaxError:eMsg position:tokenPosition to:source position
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4926
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4927
    ^ #Error
120
claus
parents: 117
diff changeset
  4928
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  4929
    "Created: / 13.9.1995 / 12:50:50 / claus"
1068
dc7f2f44f2ee syntaxHighlight bug fixed
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
  4930
    "Modified: / 18.8.2000 / 20:51:22 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4931
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  4932
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4933
qualifiedName
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4934
    "a vw3.x (and later) feature: QualifiedName is #{ id ... id }
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4935
     and mapped to a global variable here.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4936
     The initial #{ is supposed to be not yet skipped."
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4937
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4938
    |elements elem pos1|
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4939
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4940
    pos1 := tokenPosition.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4941
    self nextToken.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4942
    elements := OrderedCollection new.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4943
    [tokenType ~~ $} ] whileTrue:[
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4944
        elem := self variable.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4945
        (elem == #Error) ifTrue:[
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4946
            (tokenType == #EOF) ifTrue:[
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4947
                self syntaxError:'unterminated qualifiedName; ''}'' expected' 
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4948
                        position:pos1 to:tokenPosition
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4949
            ].
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4950
            ^ #Error
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4951
        ].
1100
2a5a68297030 dont set error flag, when not parsing for code and
Claus Gittinger <cg@exept.de>
parents: 1099
diff changeset
  4952
        errorFlag := false.
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4953
        (elem isVariable and:[elem isGlobal]) ifFalse:[
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  4954
            self warning:'elements of a qualifiedName should be globalIdentifiers' 
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4955
                    position:pos1 to:tokenPosition
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4956
        ].
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4957
        elements add:elem.
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4958
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4959
        self nextToken.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4960
        tokenType == #'::' ifTrue:[
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4961
            "/ notice that Foo.Bar has already been scanned as Foo::Bar
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4962
            "/(which is a kludge)
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4963
            self nextToken.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4964
        ] ifFalse:[
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4965
            tokenType ~~ $} ifTrue:[
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4966
                self syntaxError:'bad qualifiedName syntax; ''.'' or ''}'' expected' 
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4967
                        position:pos1 to:tokenPosition.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4968
                ^ #Error
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4969
            ].
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4970
        ].
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4971
    ].
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4972
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4973
    elements size > 1 ifTrue:[
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  4974
        self syntaxError:'Sorry: qualified names are not yet implemented.'.
924
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4975
    ].
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4976
    ^ elements first.
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4977
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4978
    "Modified: / 14.4.1998 / 17:03:29 / cg"
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4979
!
6214afc7e312 qualifiedName support
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  4980
894
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4981
squeakComputedArray
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4982
    |expressions elem pos1|
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4983
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4984
    pos1 := tokenPosition.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4985
    expressions := OrderedCollection new:20.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4986
    [tokenType ~~ $} ] whileTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4987
        elem := self expression.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4988
        (elem == #Error) ifTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4989
            (tokenType == #EOF) ifTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4990
                self syntaxError:'unterminated computed-array-element; ''}'' expected' 
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4991
                        position:pos1 to:tokenPosition
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4992
            ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4993
            ^ #Error
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4994
        ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4995
        expressions add:elem.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4996
        tokenType == $. ifTrue:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4997
            self nextToken.
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4998
        ] ifFalse:[
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  4999
            ^ expressions
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  5000
        ]
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  5001
    ].
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  5002
    ^ expressions
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  5003
!
943b6d0d26b3 changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 887
diff changeset
  5004
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5005
unaryExpression
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5006
    "parse a unary-expression; return a node-tree, nil or #Error"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5007
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5008
    |receiver thisReceiver sel pos pos2 try|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5009
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5010
    receiver := self primary.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5011
    (receiver == #Error) ifTrue:[^ #Error].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5012
    [tokenType == #Identifier] whileTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5013
        pos := tokenPosition.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5014
        pos2 := pos + tokenName size - 1.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  5015
        self markSelector:tokenName from:pos to:pos2 receiverNode:receiver.
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5016
        sel := tokenName.
1022
32bc5fc06687 added selector correction.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  5017
        sel := self selectorCheck:sel for:receiver position:pos to:pos2.
1061
457156ffedec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
  5018
        thisReceiver := receiver.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5019
        try := UnaryNode receiver:receiver selector:sel fold:foldConstants.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5020
        (try isMemberOf:String) ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5021
            self parseError:try position:pos to:pos2.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5022
            errorFlag := false. "ok, user wants it - so he'll get it"
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5023
            receiver := UnaryNode receiver:receiver selector:sel fold:nil.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5024
        ] ifFalse:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5025
            receiver := try
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5026
        ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5027
        receiver lineNumber:tokenLineNr.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5028
        parseForCode ifFalse:[
1061
457156ffedec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
  5029
            self rememberSelectorUsed:sel receiver:thisReceiver
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5030
        ].
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5031
        self nextToken.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5032
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5033
    ^ receiver
210
b22f4472833b allow enable/disable of constantFolding
Claus Gittinger <cg@exept.de>
parents: 207
diff changeset
  5034
1032
f97183aecb4e oops - super-send-doIt in a debugger used receivers class
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  5035
    "Modified: / 6.2.2000 / 14:54:20 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5036
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5037
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5038
variable
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5039
    "parse a simple (i.e. non-namespace-access path) variable; 
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5040
     return a node-tree, nil or #Error.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5041
     Does not advance to next token.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5042
     If undefined, notify error and correct if user wants to"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5043
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  5044
    |v pos1 pos2|
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  5045
454
00a079c9832f handle uses: usedNameSpace info
Claus Gittinger <cg@exept.de>
parents: 451
diff changeset
  5046
    v := self variableOrError:tokenName.
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  5047
    (v ~~ #Error) ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5048
        (v isMemberOf:VariableNode) ifTrue:[
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  5049
            self markVariable:v.
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5050
        ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5051
        ^ v
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5052
    ].
865
580b3f73021b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  5053
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  5054
    pos1 := tokenPosition.
864
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  5055
    pos2 := pos1+tokenName size-1.
a716d90fa5a9 better selector marking
Claus Gittinger <cg@exept.de>
parents: 837
diff changeset
  5056
    self markUnknownIdentifierFrom:pos1 to:pos2.
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  5057
1089
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5058
    parseForCode == true ifTrue:[    
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5059
        v := self correctVariable.
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5060
        (v ~~ #Error) ifTrue:[^ v].
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5061
    ].
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5062
ac7a3f73e18f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1087
diff changeset
  5063
    errorFlag := true.
664
63d1460e8ee3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
  5064
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5065
    parseForCode ifFalse:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5066
        self rememberGlobalUsed:tokenName
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5067
    ] ifTrue:[
663
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5068
        tokenName first isLowercase ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5069
            ImplicitSelfSends ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5070
                selfNode isNil ifTrue:[
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5071
                    selfNode := SelfNode value:selfValue
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5072
                ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5073
                ^ UnaryNode receiver:selfNode selector:('implicit_' , tokenName) asSymbol.
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5074
            ].
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5075
            ^ #Error
6c6a20f144ea more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 660
diff changeset
  5076
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5077
    ].
865
580b3f73021b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 864
diff changeset
  5078
869
c483b1e6a0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
  5079
"/    self markGlobalIdentifierFrom:pos1 to:pos2.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5080
    ^ VariableNode type:#GlobalVariable name:tokenName asSymbol
454
00a079c9832f handle uses: usedNameSpace info
Claus Gittinger <cg@exept.de>
parents: 451
diff changeset
  5081
687
27565829b5d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
  5082
    "Modified: / 16.4.1998 / 18:46:45 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5083
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5084
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5085
variableOrError
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5086
    "parse a simple (i.e. non-namespace-access path) variable; 
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5087
     return a node-tree, nil or #Error.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5088
     Does not advance to next token."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5089
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  5090
    ^ self variableOrError:tokenName
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  5091
!
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  5092
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  5093
variableOrError:varName
1028
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5094
    "parse a simple (i.e. non-namespace-access path) variable; 
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5095
     return a node-tree, nil or #Error.
cbdce68d87f6 fixed qualifiedName parsing
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  5096
     Does not advance to next token."
21
338c3cfeffbf *** empty log message ***
claus
parents: 20
diff changeset
  5097
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5098
    |var varIndex aClass searchBlock args vars
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5099
     tokenSymbol space classVarIndex holder|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5100
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5101
    "is it a block-arg or block-var ?"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5102
    searchBlock := currentBlock.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5103
    [searchBlock notNil] whileTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5104
        vars := searchBlock variables.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5105
        vars notNil ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5106
            varIndex := vars findFirst:[:aBlockVar | aBlockVar name = varName].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5107
            varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5108
                ^ VariableNode type:#BlockVariable
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5109
                               name:varName
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5110
                              token:(vars at:varIndex)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5111
                              index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5112
                              block:searchBlock
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5113
                               from:currentBlock
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5114
            ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5115
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5116
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5117
        args := searchBlock arguments.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5118
        args notNil ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5119
            varIndex := args findFirst:[:aBlockArg | aBlockArg name = varName].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5120
            varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5121
                ^ VariableNode type:#BlockArg
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5122
                               name:varName
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5123
                              token:(args at:varIndex)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5124
                              index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5125
                              block:searchBlock
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5126
                               from:currentBlock 
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5127
            ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5128
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5129
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5130
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5131
        searchBlock := searchBlock home
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5132
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5133
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5134
    "is it a method-variable ?"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5135
    methodVars notNil ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5136
        varIndex := methodVarNames indexOf:varName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5137
        varIndex ~~ 0 ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5138
            var := methodVars at:varIndex.
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5139
            var used:true.
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5140
            parseForCode ifFalse:[self rememberLocalUsed:varName].
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5141
            ^ VariableNode type:#MethodVariable
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5142
                           name:varName
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5143
                          token:var
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5144
                          index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5145
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5146
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5147
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5148
    "is it a method-argument ?"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5149
    methodArgs notNil ifTrue:[
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5150
        varIndex := methodArgNames indexOf:varName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5151
        varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5152
            ^ VariableNode type:#MethodArg
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5153
                           name:varName
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5154
                          token:(methodArgs at:varIndex)
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5155
                          index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5156
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5157
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5158
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5159
    contextToEvaluateIn notNil ifTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5160
        |con varNames|
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5161
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5162
        "/ 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5163
        "/ search names of the context.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5164
        "/ 
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5165
        con := contextToEvaluateIn.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5166
        [con notNil] whileTrue:[
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5167
            varNames := self class argAndVarNamesForContext:con.
690
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5168
            varNames size > 0 ifTrue:[
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5169
                varIndex := varNames lastIndexOf:varName.
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5170
                varIndex ~~ 0 ifTrue:[
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5171
                    ^ VariableNode type:#ContextVariable
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5172
                                   name:varName
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5173
                                context:con
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5174
                                  index:varIndex
936f55e3cc17 care for empty varNames
Claus Gittinger <cg@exept.de>
parents: 688
diff changeset
  5175
                ].
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5176
            ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5177
            con := con home.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5178
        ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5179
    ].
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5180
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5181
    classToCompileFor notNil ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5182
        "is it an instance-variable ?"
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5183
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5184
        varIndex := (self classesInstVarNames) lastIndexOf:varName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5185
        varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5186
            classToCompileFor isMeta ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5187
                classVarIndex := (self classesClassVarNames) lastIndexOf:varName.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5188
                classVarIndex ~~ 0 ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5189
                    "/ give a warning - that maybe a common error
825
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5190
                    alreadyWarnedClassInstVarRefs isNil ifTrue:[
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5191
                        alreadyWarnedClassInstVarRefs := Set new
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5192
                    ].
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5193
                    (alreadyWarnedClassInstVarRefs includes:varName) ifFalse:[
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5194
                        self warning:('there is both a class variable and a class-instance variable named ''' , varName , '''.\\Refering to the class-instance variable here.') withCRs.
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5195
                        alreadyWarnedClassInstVarRefs add:varName.
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5196
                    ].
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5197
                ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5198
            ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5199
            parseForCode ifFalse:[self rememberInstVarUsed:varName].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5200
            ^ VariableNode type:#InstanceVariable 
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5201
                           name:varName
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5202
                          index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5203
                      selfValue:selfValue
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5204
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5205
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5206
        "/ see if there is a corresponding classVar (for the warning)
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5207
        classVarIndex := (self classesClassVarNames) lastIndexOf:varName.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5208
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5209
        "/      "is it a class-instance-variable ?"
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5210
        "/
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5211
        "/ Notice:
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5212
        "/ it is no longer allowed to fetch class-instance variables
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5213
        "/ from instance methods ...
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5214
        "/ (used to be in previous ST/X versions)
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5215
        "/
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5216
        varIndex := (self classesClassInstVarNames) lastIndexOf:varName.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5217
        varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5218
            aClass := self inWhichClassIsClassInstVar:varName.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5219
            aClass notNil ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5220
                classToCompileFor isMeta ifFalse:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5221
                    classVarIndex == 0 ifTrue:[
705
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5222
                        "/ there is no corresponding classVar;
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5223
                        "/ wants to access classInstVar ?
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5224
                        contextToEvaluateIn notNil ifTrue:[
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5225
                            "/ allow it in a doIt ...
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5226
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5227
                            ^ VariableNode type:#ClassInstanceVariable
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5228
                                           name:varName
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5229
                                          index:varIndex
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5230
                                      selfClass:aClass
e22927413fe5 allow access to class-instVars from doIts;
Claus Gittinger <cg@exept.de>
parents: 694
diff changeset
  5231
                        ].
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5232
                        self parseError:'access to class-inst-var from inst method is not allowed'.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5233
                        ^ #Error.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5234
                    ] ifFalse:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5235
                        "/ give a warning - that maybe a common error
738
2c85becd8697 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
  5236
                        self warning:('there is both a class variable and a class-instance variable named ''' , varName , '''.\\Refering to the class variable here (instMethods dont see classInstVars).') withCRs.
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5237
                    ]
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5238
                ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5239
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5240
"/ OLD CODE:
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5241
"/ self warning:'access to class-inst-var from inst method will soon be no longer supported'.
443
e7d0bad68d60 oops - previous versions allowed access to class-instance variables
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
  5242
"/
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5243
"/                    parseForCode ifFalse:[self rememberClassVarUsed:varName].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5244
"/                    ^ VariableNode type:#ClassInstanceVariable
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5245
"/                                   name:varName
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5246
"/                                  index:varIndex
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5247
"/                              selfClass:aClass
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5248
"/                ].
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5249
            ] ifFalse:[
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5250
                "/ self halt:'oops - should not happen'.
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5251
            ]
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5252
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5253
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5254
        "is it a class-variable ?"
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5255
640
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5256
        varIndex := classVarIndex.
c3be1ba89df0 handle passed-in context (for evaluation in the debuggers code-frame)
Claus Gittinger <cg@exept.de>
parents: 637
diff changeset
  5257
        varIndex ~~ 0 ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5258
            aClass := self inWhichClassIsClassVar:varName.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5259
            aClass notNil ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5260
                parseForCode ifFalse:[self rememberClassVarUsed:varName].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5261
                ^ VariableNode type:#ClassVariable class:aClass name:varName
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5262
            ].
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5263
            "/ self halt:'oops - should not happen'.
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5264
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5265
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5266
        "is it a private-class ?"
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5267
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5268
        aClass := self classToLookForClassVars.
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5269
        aClass isMeta ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5270
            aClass := aClass soleInstance.
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5271
        ].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5272
        (aClass privateClassesAt:varName) notNil ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5273
            parseForCode ifFalse:[self rememberGlobalUsed:(aClass name , '::' , varName)].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5274
            ^ VariableNode type:#PrivateClass class:aClass name:varName
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5275
        ].
418
6a3d240e7db6 namespace support
Claus Gittinger <cg@exept.de>
parents: 412
diff changeset
  5276
    ].
6a3d240e7db6 namespace support
Claus Gittinger <cg@exept.de>
parents: 412
diff changeset
  5277
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5278
    "is it in a namespace ?"
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5279
    space := self findNameSpaceWith:varName.
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5280
    space notNil ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5281
        space ~~ Smalltalk ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5282
            parseForCode ifFalse:[self rememberGlobalUsed:(space name , '::' , varName)].
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5283
            space isNameSpace ifTrue:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5284
                ^ VariableNode type:#GlobalVariable name:(space name , '::' , varName) asSymbol
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5285
            ] ifFalse:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5286
                ^ VariableNode type:#PrivateClass class:space name:varName
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5287
            ]
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5288
        ] ifFalse:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5289
            parseForCode ifFalse:[self rememberGlobalUsed:varName].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5290
            ^ VariableNode type:#GlobalVariable name:varName asSymbol
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5291
        ]
454
00a079c9832f handle uses: usedNameSpace info
Claus Gittinger <cg@exept.de>
parents: 451
diff changeset
  5292
    ].
00a079c9832f handle uses: usedNameSpace info
Claus Gittinger <cg@exept.de>
parents: 451
diff changeset
  5293
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5294
    "is it a global-variable ?"
63
c30ce56de7a8 *** empty log message ***
claus
parents: 62
diff changeset
  5295
    tokenSymbol := varName asSymbolIfInterned.
c30ce56de7a8 *** empty log message ***
claus
parents: 62
diff changeset
  5296
    tokenSymbol notNil ifTrue:[
628
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5297
        (Smalltalk includesKey:tokenSymbol) ifTrue:[
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5298
            parseForCode ifFalse:[self rememberGlobalUsed:varName].
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5299
            ^ VariableNode type:#GlobalVariable name:tokenSymbol
54fa351ac6be *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 624
diff changeset
  5300
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5301
    ].
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5302
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5303
    "is it a workspace variable ?"
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5304
    (requestor notNil and:[requestor isStream not]) ifTrue:[
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5305
        "/ when parsing doits, this is done twice;
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5306
        "/ first, for the parse, then as a block-code
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5307
        "/ for the code.
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5308
        "/ We only care for WorkspaceVars in doIts
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5309
        (selector isNil or:[selector == #doIt]) ifTrue:[
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5310
            Workspace notNil and:[
942
366981f31cd6 care for no workspace class present
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
  5311
                (holder := Workspace workspaceVariableAt:varName) notNil ifTrue:[
366981f31cd6 care for no workspace class present
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
  5312
                    ^ VariableNode type:#WorkspaceVariable holder:holder name:varName
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5313
                ]
877
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5314
            ]
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5315
        ]
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5316
    ].
e75488a39c46 workspace variables.
Claus Gittinger <cg@exept.de>
parents: 869
diff changeset
  5317
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5318
    ^ #Error
353
fe7c87a7479f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 341
diff changeset
  5319
825
ff00fb46342f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5320
    "Modified: / 8.3.1999 / 01:35:56 / cg"
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5321
! !
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5322
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5323
!Parser methodsFor:'private'!
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5324
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5325
currentNameSpace
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5326
    |spc|
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5327
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5328
    spc := currentNamespace.
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5329
    spc isNil ifTrue:[
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5330
        (requestor respondsTo:#currentNameSpace) ifTrue:[
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5331
            spc := requestor currentNameSpace
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5332
        ] ifFalse:[
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5333
            spc := Class nameSpaceQuerySignal query.
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5334
        ].
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5335
        currentNamespace := spc.
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5336
    ].
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5337
    ^ spc
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5338
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5339
    "Created: / 19.12.1996 / 23:47:58 / cg"
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5340
    "Modified: / 14.10.1997 / 20:56:06 / cg"
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5341
    "Modified: / 18.3.1999 / 18:25:50 / stefan"
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5342
!
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5343
492
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5344
currentNameSpace:aNameSpace
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5345
    currentNamespace := aNameSpace.
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5346
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5347
    "Created: 8.2.1997 / 19:37:03 / cg"
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5348
!
fe778fd0ce46 additional entry, passing the namespace
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
  5349
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5350
currentUsedNameSpaces
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5351
    |spaces|
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5352
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5353
    spaces := currentUsedNamespaces.
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5354
    spaces isNil ifTrue:[
679
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5355
        (requestor respondsTo:#usedNameSpaces) ifTrue:[
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5356
            spaces := requestor usedNameSpaces
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5357
        ] ifFalse:[
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5358
            spaces := Class usedNameSpaceQuerySignal query.
679
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5359
        ].
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5360
        spaces isNil ifTrue:[
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5361
            spaces := #()
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5362
        ].
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5363
        currentUsedNamespaces := spaces.
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5364
    ].
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5365
    ^ spaces
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5366
679
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5367
    "Created: / 19.12.1996 / 23:49:10 / cg"
6a60e6d0ccd1 avoid redoing work in #currentUsedNameSpaces
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
  5368
    "Modified: / 7.4.1998 / 08:59:28 / cg"
832
553c25252a78 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 825
diff changeset
  5369
    "Modified: / 18.3.1999 / 18:25:57 / stefan"
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5370
!
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5371
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5372
findNameSpaceWith:aVariableName
692
78647d24f59a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 690
diff changeset
  5373
    |ns currentSpace usedSpaces|
486
e894035d5223 fixed name resolving for private classes when accessing
Claus Gittinger <cg@exept.de>
parents: 481
diff changeset
  5374
e894035d5223 fixed name resolving for private classes when accessing
Claus Gittinger <cg@exept.de>
parents: 481
diff changeset
  5375
    "/ private names have already been searched for.
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5376
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5377
    classToCompileFor notNil ifTrue:[
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5378
        "/ Q:
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5379
        "/ consider private classes of superclasses.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5380
        "/ or search in the top owing classes namespace only ?
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5381
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5382
        "/ for now, ignore other private classes - they are only
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5383
        "/ known to the corresponding ownerClass.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5384
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5385
        "is it in the classes namespace ?"
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5386
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5387
        classToCompileFor isPrivate ifTrue:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5388
            ns := classToCompileFor topOwningClass nameSpace
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5389
        ] ifFalse:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5390
            ns := classToCompileFor nameSpace.
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5391
        ].
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5392
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5393
        (ns notNil
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5394
        and:[ns ~~ Smalltalk]) ifTrue:[
1142
8ed9215cba13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1139
diff changeset
  5395
            ns isNameSpace ifTrue:[
8ed9215cba13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1139
diff changeset
  5396
                (ns at:aVariableName) notNil ifTrue:[
8ed9215cba13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1139
diff changeset
  5397
                    ^ ns
8ed9215cba13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1139
diff changeset
  5398
                ]
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5399
            ]
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5400
        ].
494
bb3e71c90dfd currentClasses nameSpace is first to look for globals.
Claus Gittinger <cg@exept.de>
parents: 493
diff changeset
  5401
495
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5402
"/        ns := classToCompileFor nameSpace.
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5403
"/        ns notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5404
"/            "is it in the current classes namespace ?"
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5405
"/            (ns at:aVariableName asSymbol) notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5406
"/                ^ ns
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5407
"/            ]
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
  5408
"/        ].
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5409
    ].
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5410
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5411
    "is it in the current namespace ?"
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5412
    currentSpace := self currentNameSpace.
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5413
    (currentSpace notNil
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5414
    and:[currentSpace ~~ Smalltalk]) ifTrue:[
1043
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5415
        currentSpace isNameSpace ifTrue:[
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5416
            (currentSpace at:aVariableName) notNil ifTrue:[
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5417
                ^ currentSpace
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5418
            ]
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5419
        ] ifFalse:[
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5420
            (currentSpace privateClassesAt:aVariableName) notNil ifTrue:[
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5421
                ^ currentSpace
08ad8eb7532d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  5422
            ]
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5423
        ]
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5424
    ].
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5425
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5426
    "is it in one of the used namespaces ?"
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5427
    usedSpaces := self currentUsedNameSpaces.
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5428
    usedSpaces notNil ifTrue:[
1042
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5429
        usedSpaces do:[:aNameSpace |
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5430
            (aNameSpace at:aVariableName) notNil ifTrue:[
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5431
                ^ aNameSpace
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5432
            ]
d192446cb745 fixed qualifiedName handling (as array constant)
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  5433
        ]
455
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5434
    ].
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5435
    ^ nil
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5436
2e234d3bc96d fixed parsing of private classes within a nameSpace
Claus Gittinger <cg@exept.de>
parents: 454
diff changeset
  5437
    "Created: 19.12.1996 / 23:51:02 / cg"
619
247c7807db14 empty source notification
Claus Gittinger <cg@exept.de>
parents: 607
diff changeset
  5438
    "Modified: 14.10.1997 / 20:56:35 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5439
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5440
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5441
inWhichClassIsClassInstVar:aString
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5442
    "search class-chain for the class-instance variable named aString
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5443
     - return the class or nil if not found"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5444
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5445
    |aClass|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5446
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5447
    aClass := self classToLookForClassVars.
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5448
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5449
    [aClass notNil] whileTrue:[
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5450
        (aClass class instVarNames includes:aString) ifTrue:[ ^ aClass].
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5451
        aClass := aClass superclass
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5452
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5453
    ^ nil
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5454
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5455
    "Modified: / 18.6.1998 / 15:45:34 / cg"
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5456
!
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5457
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5458
inWhichClassIsClassVar:aString
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5459
    "search class-chain for the classvariable named aString
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5460
     - return the class or nil if not found"
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5461
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5462
    |aClass className baseClass|
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5463
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5464
    aClass := self classToLookForClassVars.
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5465
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5466
    aClass isMeta ifTrue:[
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5467
        className := aClass name copyWithoutLast:6.
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5468
        baseClass := Smalltalk at:(className asSymbol).
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5469
        baseClass notNil ifTrue:[
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5470
            aClass := baseClass
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5471
        ]
713
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5472
    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5473
    ^ aClass whichClassDefinesClassVar:aString
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5474
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5475
"/    [aClass notNil] whileTrue:[
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5476
"/        (aClass classVarNames includes:aString) ifTrue:[ ^ aClass].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5477
"/        aClass := aClass superclass
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5478
"/    ].
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5479
"/    ^ nil
ae3141c892d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 712
diff changeset
  5480
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5481
    "Modified: / 17.6.1996 / 17:18:41 / stefan"
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5482
    "Modified: / 18.6.1998 / 15:45:29 / cg"
787
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5483
!
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5484
1003
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5485
noAssignmentAllowed:eMsg at:pos
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5486
    ((tokenType == $_) or:[tokenType == #':=']) ifTrue:[
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5487
        self parseError:eMsg position:pos to:tokenPosition + tokenType size - 1.
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5488
        self isSyntaxHighlighter ifFalse:[
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5489
            ^ false
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5490
        ].
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5491
        self nextToken. "/ eat the assign when doing highlighting only
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5492
    ].
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5493
    ^ true
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5494
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5495
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5496
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5497
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5498
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5499
!
37badd2eb5b0 dont stop syntaxHighlighting when a bad assignment is encountered
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  5500
787
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5501
plausibilityCheck:aNode
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5502
    ^ aNode plausibilityCheck
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5503
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5504
    "Created: / 19.10.1998 / 19:56:09 / cg"
9a178fa050b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  5505
    "Modified: / 19.10.1998 / 19:56:29 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5506
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5507
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5508
!Parser methodsFor:'queries'!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5509
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5510
classToLookForClassVars
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5511
    "helper - return the class to look for classVars.
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5512
     If there is a context in which we evaluate, the
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5513
     methods implementing class is used instead of the
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5514
     class of the receiver."
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5515
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5516
    |m who|
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5517
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5518
    contextToEvaluateIn notNil ifTrue:[
748
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5519
        m := contextToEvaluateIn method.
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5520
        m notNil ifTrue:[
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5521
            who := contextToEvaluateIn method who.
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5522
            who notNil ifTrue:[
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5523
                ^ who methodClass.
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5524
            ]
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5525
        ].
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5526
        "/ mhmh - might be a doIt ...
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5527
    ].
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5528
    ^ classToCompileFor
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5529
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5530
    "Created: / 18.6.1998 / 15:43:42 / cg"
748
9c44179d6b03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  5531
    "Modified: / 21.7.1998 / 18:19:52 / cg"
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5532
!
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5533
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5534
classesClassInstVarNames
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5535
    "caching allInstVarNames for next compilation saves time ..."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5536
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5537
    |names|
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5538
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5539
    [
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5540
        |cls|
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5541
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5542
        cls := self classToLookForClassVars.
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5543
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5544
        (PrevClassInstVarNames isNil or:[PrevClass ~~ cls]) ifTrue:[
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5545
            PrevClass notNil ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5546
                PrevClass removeDependent:Parser
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5547
            ].
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5548
            PrevClass := cls.
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5549
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5550
            PrevClassInstVarNames := cls class allInstVarNames.
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5551
            PrevClass addDependent:Parser.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5552
        ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5553
        names := PrevClassInstVarNames.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5554
    ] valueUninterruptably.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5555
    ^ names
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5556
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5557
    "Created: / 14.10.1996 / 18:03:35 / cg"
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5558
    "Modified: / 18.6.1998 / 15:44:41 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5559
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5560
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5561
classesClassVarNames
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5562
    "caching allClassVarNames for next compilation saves time ..."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5563
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5564
    |names|
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5565
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5566
    [
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5567
        |cls aClass|
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5568
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5569
        cls := self classToLookForClassVars.
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5570
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5571
        (PrevClassVarNames isNil or:[PrevClass ~~ cls]) ifTrue:[
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5572
            PrevClass notNil ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5573
                PrevClass removeDependent:Parser
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5574
            ].
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5575
            aClass := PrevClass := cls.
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5576
            aClass isMeta ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5577
                aClass := aClass soleInstance.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5578
                aClass isNil ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5579
                    aClass := classToCompileFor
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5580
                ]
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5581
            ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5582
            PrevClassVarNames := aClass allClassVarNames.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5583
            PrevClass addDependent:Parser.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5584
        ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5585
        names := PrevClassVarNames.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5586
    ] valueUninterruptably.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5587
    ^ names
290
d1650b17b9e9 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 285
diff changeset
  5588
732
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5589
    "Modified: / 17.6.1996 / 17:15:53 / stefan"
c36e5ef1e6ce oops - when evaluating in a context, classVars must be
Claus Gittinger <cg@exept.de>
parents: 725
diff changeset
  5590
    "Created: / 14.10.1996 / 18:02:41 / cg"
735
4012fa1611b1 code cleanup & fix for doIt (implementing class)
Claus Gittinger <cg@exept.de>
parents: 733
diff changeset
  5591
    "Modified: / 18.6.1998 / 15:44:30 / cg"
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5592
!
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5593
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5594
classesInstVarNames
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5595
    "caching allInstVarNames for next compilation saves time ..."
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5596
694
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5597
    |names|
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5598
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5599
    [
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5600
        (PrevInstVarNames isNil or:[PrevClass ~~ classToCompileFor]) ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5601
            PrevClass notNil ifTrue:[
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5602
                PrevClass removeDependent:Parser
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5603
            ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5604
            PrevClass := classToCompileFor.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5605
            PrevInstVarNames := classToCompileFor allInstVarNames.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5606
            PrevClassInstVarNames := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5607
            PrevClassVarNames := nil.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5608
            PrevClass addDependent:Parser
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5609
        ].
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5610
        names := PrevInstVarNames
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5611
    ] valueUninterruptably.
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5612
1ec57d3a2592 must manage the PrevClass cached instVars/classInstVars
Claus Gittinger <cg@exept.de>
parents: 692
diff changeset
  5613
    ^ names
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5614
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5615
    "Created: 14.10.1996 / 18:00:26 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5616
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5617
934
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5618
contextMustBeReturnable
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5619
    ^ primitiveContextInfo notNil 
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5620
      and:[ ^ primitiveContextInfo includes:('context:' -> #return) ]
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5621
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5622
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5623
!
716f9c76b06b pass down returnable-context flag via method.
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  5624
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5625
hasNonOptionalPrimitiveCode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5626
    "return true if there was any ST/X style primitive code (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5627
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5628
    ^ hasNonOptionalPrimitiveCode
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5629
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5630
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5631
hasPrimitiveCode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5632
    "return true if there was any ST/X style primitive code (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5633
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5634
    ^ hasPrimitiveCode
98
claus
parents: 97
diff changeset
  5635
!
claus
parents: 97
diff changeset
  5636
883
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  5637
isSyntaxHighlighter
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  5638
    ^ false
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  5639
!
e595802b4853 mark badIdentifiers
Claus Gittinger <cg@exept.de>
parents: 879
diff changeset
  5640
385
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5641
lineNumberInfo
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5642
    ^ lineNumberInfo
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5643
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5644
    "Created: 21.10.1996 / 17:06:16 / cg"
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5645
!
425fc425516b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
  5646
391
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5647
lineNumberInfo:how
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5648
    lineNumberInfo := how
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5649
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5650
    "Created: 23.10.1996 / 15:39:43 / cg"
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5651
!
c556973a4b47 added method to extract a block, given a lineNumber within the
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  5652
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5653
messagesSent
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5654
    "return a collection with sent message selectors (valid after parsing).
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5655
     Includes all sent messages (i.e. also sent super messages)"
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5656
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5657
    ^ (messagesSent ? #()) collect:[:each | each asSymbol]
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5658
!
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5659
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5660
messagesSentToSelf
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5661
    "return a collection with message selectors sent to self only (valid after parsing)"
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5662
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5663
    ^ (messagesSentToSelf ? #()) collect:[:each | each asSymbol]
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5664
!
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5665
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5666
messagesSentToSuper
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5667
    "return a collection with message selectors sent to super only (valid after parsing)"
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5668
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5669
    ^ (messagesSentToSuper ? #()) collect:[:each | each asSymbol]
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5670
!
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5671
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5672
methodArgs
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5673
    "return an array with methodarg names (valid after parsing spec)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5674
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5675
    ^ methodArgNames
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5676
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5677
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5678
methodVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5679
    "return a collection with method variablenames (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5680
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5681
    ^ methodVarNames
23
1f7bcfff8d39 *** empty log message ***
claus
parents: 21
diff changeset
  5682
!
1f7bcfff8d39 *** empty log message ***
claus
parents: 21
diff changeset
  5683
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5684
modifiedClassVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5685
    "return a collection with classvariablenames modified by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5686
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5687
    ^ modifiedClassVars ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5688
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5689
    "Modified: 19.6.1997 / 17:54:48 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5690
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5691
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5692
modifiedGlobals
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5693
    "return a collection with globalnames modified by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5694
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5695
    ^ modifiedGlobals ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5696
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5697
    "Modified: 19.6.1997 / 17:54:51 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5698
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5699
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5700
modifiedInstVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5701
    "return a collection with instvariablenames modified by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5702
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5703
    ^ modifiedInstVars ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5704
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5705
    "Modified: 19.6.1997 / 17:54:27 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5706
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5707
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5708
numberOfMethodArgs
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5709
    "return the number of methodargs (valid after parsing spec)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5710
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5711
    ^ methodArgs size
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5712
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5713
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5714
numberOfMethodVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5715
    "return the number of method variables (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5716
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5717
    ^ methodVars size
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5718
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5719
1077
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5720
readClassVars
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5721
    "return a collection with classvariablenames read by method (valid after parsing)"
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5722
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5723
    ^ readClassVars ? #()
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5724
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5725
    "Modified: 19.6.1997 / 17:54:38 / cg"
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5726
!
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5727
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5728
readInstVars
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5729
    "return a collection with instvariablenames read by method (valid after parsing)"
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5730
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5731
    ^ readInstVars ? #()
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5732
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5733
    "Modified: 19.6.1997 / 17:54:38 / cg"
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5734
!
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5735
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5736
selector
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5737
    "return the selector (valid after parsing spec)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5738
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5739
    ^ selector
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5740
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5741
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5742
usedClassVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5743
    "return a collection with classvariablenames refd by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5744
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5745
    ^ usedClassVars ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5746
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5747
    "Modified: 19.6.1997 / 17:54:56 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5748
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5749
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5750
usedGlobals
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5751
    "return a collection with globalnames refd by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5752
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5753
    ^ usedGlobals ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5754
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5755
    "Modified: 19.6.1997 / 17:55:00 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5756
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5757
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5758
usedInstVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5759
    "return a collection with instvariablenames refd by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5760
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5761
    ^ usedInstVars ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5762
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5763
    "Modified: 19.6.1997 / 17:54:38 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5764
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5765
1064
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5766
usedSymbols
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5767
    "return a collection with used symbols (except for sent messages) (valid after parsing)"
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5768
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5769
    ^ (usedSymbols ? #()) 
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5770
!
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5771
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5772
usedVars
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5773
    "return a collection with variablenames refd by method (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5774
541
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5775
    ^ usedVars ? #()
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5776
63f0c6734fb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 540
diff changeset
  5777
    "Modified: 19.6.1997 / 17:55:04 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5778
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5779
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5780
usesSuper
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5781
    "return true if the parsed method uses super (valid after parsing)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5782
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5783
    ^ usesSuper
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5784
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5785
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5786
!Parser methodsFor:'setup'!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5787
229
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5788
foldConstants:aSymbolOrNil
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5789
    "change the constant folding level. See the classMethod for a description."
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5790
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5791
    foldConstants := aSymbolOrNil
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5792
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5793
    "Created: 21.3.1996 / 16:03:22 / cg"
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5794
    "Modified: 21.3.1996 / 16:05:04 / cg"
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5795
!
7aecb52d907d dont fold constants with immediate evaluations
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  5796
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5797
initialize
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5798
    super initialize.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5799
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5800
    hasPrimitiveCode := hasNonOptionalPrimitiveCode := false.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5801
    warnSTXHereExtensionUsed := WarnSTXSpecials.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5802
    usesSuper := false.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5803
    parseForCode := false.
377
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5804
    foldConstants := FoldConstants.
bee1c21ecc62 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 376
diff changeset
  5805
    lineNumberInfo := LineNumberInfo.
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5806
    warnUndeclared := true.
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5807
    warnUnusedVars := WarnUnusedVars.
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5808
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5809
    "Modified: 7.9.1997 / 02:04:34 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5810
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5811
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5812
parseForCode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5813
    "turns off certain statistics (keeping referenced variables, modified vars etc.)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5814
     Use this when parsing for compilation or evaluation"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5815
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5816
    parseForCode := true
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5817
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5818
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5819
setClassToCompileFor:aClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5820
    "set the class to be used for parsing/evaluating"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5821
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5822
    classToCompileFor := aClass.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5823
    (classToCompileFor ~~ PrevClass) ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5824
	PrevClass notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5825
	    Parser update:PrevClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5826
	]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5827
    ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5828
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5829
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5830
setContext:aContext
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5831
    "set the context used while evaluating"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5832
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5833
    contextToEvaluateIn := aContext
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5834
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5835
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5836
setSelf:anObject
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5837
    "set the value to be used for self while evaluating"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5838
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5839
    selfValue := anObject.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5840
    classToCompileFor := anObject class.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5841
    (classToCompileFor ~~ PrevClass) ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5842
	PrevClass notNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5843
	    Parser update:PrevClass
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5844
	]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5845
    ]
607
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5846
!
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5847
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5848
warnUndeclared:aBoolean
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5849
    warnUndeclared := aBoolean.
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5850
118452a23976 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  5851
    "Created: 7.9.1997 / 02:05:00 / cg"
1160
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5852
!
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5853
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5854
warnUnusedVars:aBoolean
972e7e337891 Warn about unused method vars
Stefan Vogel <sv@exept.de>
parents: 1158
diff changeset
  5855
    warnUnusedVars := aBoolean.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5856
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  5857
84
claus
parents: 83
diff changeset
  5858
!Parser methodsFor:'statistic'!
claus
parents: 83
diff changeset
  5859
1077
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5860
rememberClassVarRead:name 
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5861
    readClassVars isNil ifTrue:[
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5862
        readClassVars := Set new
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5863
    ].
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5864
    readClassVars add:name.
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5865
    self rememberClassVarUsed:name
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5866
!
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5867
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5868
rememberClassVarUsed:name 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5869
    usedClassVars isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5870
	usedClassVars := Set new
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5871
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5872
    usedClassVars add:name.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5873
    self rememberVariableUsed:name
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5874
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5875
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5876
rememberGlobalUsed:name 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5877
    usedGlobals isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5878
	usedGlobals := Set new
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5879
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5880
    usedGlobals add:name.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5881
    self rememberVariableUsed:name
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5882
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5883
1077
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5884
rememberInstVarRead:name 
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5885
    readInstVars isNil ifTrue:[
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5886
        readInstVars := Set new
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5887
    ].
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5888
    readInstVars add:name.
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5889
    self rememberVariableUsed:name
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5890
!
e34f711bd1d1 #readInstVars & #readClassVars
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
  5891
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5892
rememberInstVarUsed:name 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5893
    usedInstVars isNil ifTrue:[
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5894
	usedInstVars := Set new
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5895
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5896
    usedInstVars add:name.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5897
    self rememberVariableUsed:name
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5898
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5899
977
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5900
rememberLocalUsed:name 
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5901
    usedLocalVars isNil ifTrue:[
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5902
        usedLocalVars := Set new
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5903
    ].
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5904
    usedLocalVars add:name.
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5905
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5906
!
c1afbaf48a23 remember used & modified local vars;
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  5907
84
claus
parents: 83
diff changeset
  5908
rememberSelectorUsed:sel
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5909
    messagesSent isNil ifTrue:[
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5910
        messagesSent := IdentitySet new.
84
claus
parents: 83
diff changeset
  5911
    ].
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5912
    messagesSent add:sel 
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5913
!
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5914
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5915
rememberSelectorUsed:sel receiver:receiverNode
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5916
    self rememberSelectorUsed:sel.
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5917
    receiverNode isSuper ifTrue:[
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5918
        self rememberSelectorUsedInSuperSend:sel
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5919
    ] ifFalse:[
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5920
        receiverNode isSelf ifTrue:[
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5921
            self rememberSelectorUsedInSelfSend:sel
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5922
        ].
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5923
    ].
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5924
!
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5925
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5926
rememberSelectorUsedInSelfSend:sel
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5927
    messagesSentToSelf isNil ifTrue:[
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5928
        messagesSentToSelf := IdentitySet new.
1060
9978f9d22dde more queries (remember super messages)
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
  5929
    ].
1082
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5930
    messagesSentToSelf add:sel
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5931
!
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5932
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5933
rememberSelectorUsedInSuperSend:sel
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5934
    messagesSentToSuper isNil ifTrue:[
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5935
        messagesSentToSuper := IdentitySet new.
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5936
    ].
f795099895c5 keep track of messages sent to self (for checker)
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  5937
    messagesSentToSuper add:sel
84
claus
parents: 83
diff changeset
  5938
!
claus
parents: 83
diff changeset
  5939
1064
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5940
rememberSymbolUsed:aSymbol
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5941
    usedSymbols isNil ifTrue:[
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5942
        usedSymbols := IdentitySet new.
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5943
    ].
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5944
    usedSymbols add:aSymbol 
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5945
!
ecd50cdfb881 added #usedSymbols statistic
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  5946
84
claus
parents: 83
diff changeset
  5947
rememberVariableUsed:name 
claus
parents: 83
diff changeset
  5948
    usedVars isNil ifTrue:[
claus
parents: 83
diff changeset
  5949
	usedVars := Set new
claus
parents: 83
diff changeset
  5950
    ].
claus
parents: 83
diff changeset
  5951
    usedVars add:name
claus
parents: 83
diff changeset
  5952
! !
claus
parents: 83
diff changeset
  5953
358
78b0d8954c49 removed possible conflict between #classVarNames here and in Class.
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  5954
!Parser class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 145
diff changeset
  5955
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 145
diff changeset
  5956
version
1189
5f2bfc0d501b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1187
diff changeset
  5957
    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.299 2001-09-24 09:46:32 cg Exp $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 145
diff changeset
  5958
! !
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 139
diff changeset
  5959
Parser initialize!