Scanner.st
author Claus Gittinger <cg@exept.de>
Tue, 13 Nov 2012 14:03:03 +0100
changeset 2983 3d721bb07c48
parent 2961 d18fe23b336a
child 2987 1f2cd9585ea8
permissions -rw-r--r--
class: Scanner added: #isDoIt changed: #skipComment #skipToEndOfLineRememberingIn: support delimiter-comments
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
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
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
"
1073
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
    12
"{ Package: 'stx:libcomp' }"
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
    13
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    14
Object subclass:#Scanner
1595
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    15
	instanceVariableNames:'typeArray actionArray source lineNr token tokenType tokenPosition
2612
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    16
		tokenValue tokenName tokenLineNr tokenLastEndPosition hereChar
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    17
		peekChar peekChar2 requestor exitBlock errorFlag ignoreErrors
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    18
		ignoreWarnings saveComments currentComments collectedSource
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    19
		scanColonAsKeyword outStream outCol inArrayLiteral lastDirective
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    20
		parserFlags didWarnAboutSTXSpecialComment
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    21
		didWarnAboutUnderscoreInIdentifier didWarnAboutOldStyleAssignment
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    22
		didWarnAboutDollarInIdentifier didWarnAboutPeriodInSymbol
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
    23
		unicodeActions'
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    24
	classVariableNames:'DefaultTypeArray DefaultActionArray Warnings
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
    25
		EmptySourceNotificationSignal DefaultUnicodeActions'
1595
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    26
	poolDictionaries:''
2485
b00889df9732 Fix class category
Stefan Vogel <sv@exept.de>
parents: 2484
diff changeset
    27
	category:'System-Compiler'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    28
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    29
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
    30
Scanner class instanceVariableNames:'TypeArray ActionArray UnicodeActions'
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    31
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    32
"
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    33
 No other class instance variables are inherited by this class.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    34
"
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    35
!
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
    36
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
    37
Object subclass:#Comment
1595
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    38
	instanceVariableNames:'commentType commentString'
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    39
	classVariableNames:''
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    40
	poolDictionaries:''
69f4593db7d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1584
diff changeset
    41
	privateIn:Scanner
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
    42
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
    43
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    44
Object subclass:#Directive
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    45
	instanceVariableNames:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    46
	classVariableNames:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    47
	poolDictionaries:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    48
	privateIn:Scanner
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    49
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    50
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    51
Scanner::Directive subclass:#ClassDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    52
	instanceVariableNames:'className'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    53
	classVariableNames:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    54
	poolDictionaries:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    55
	privateIn:Scanner::Directive
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    56
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    57
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    58
Scanner::Directive::ClassDirective subclass:#ClassHintDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    59
	instanceVariableNames:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    60
	classVariableNames:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    61
	poolDictionaries:''
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    62
	privateIn:Scanner::Directive
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    63
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
    64
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
    65
!Scanner class methodsFor:'documentation'!
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    66
901
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    67
bugs
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    68
"
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    69
   array constant containing keywords as in:
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    70
        #(
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    71
                foo:bar:
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    72
                fee:baz:
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    73
         )
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    74
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    75
   is scanned as 4-element array containing ( #foo: #bar: #fee: #baz: )
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    76
   this MUST be fixed.
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    77
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    78
   workaround:
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    79
        #(
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    80
                #'foo:bar:'
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    81
                #'fee:baz:'
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    82
         )
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    83
        
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    84
"
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    85
!
8894cc8dda62 documentation
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
    86
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    87
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    88
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    89
 COPYRIGHT (c) 1989 by Claus Gittinger
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
    90
              All Rights Reserved
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    91
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    92
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    93
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    94
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    95
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    96
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    97
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    98
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
    99
!
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
   100
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
   101
documentation
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
   102
"
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
   103
    Scanner reads from a stream and returns individual smalltalk tokens
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   104
    Its main method is #nextToken, which reads and returns the next token
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   105
    Possibly placing additional information (such as tokenValue) into 
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   106
    instance variables as a side effect.
75
d8b9d6b39497 *** empty log message ***
claus
parents: 74
diff changeset
   107
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   108
    TODO: 
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   109
        some testers noticed, that ST-80's scanner methods are called
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   110
        xLetter, xDigit etc. For code using these (internals), the nextNumber,
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   111
        nextIdentifier etc. methods should be renamed.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   112
        (to me, these seem to be internal private methods; 
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   113
         their public use is not a good idea ..)
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   114
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   115
        Scanner is typically subclassed for parsing and #nextToken
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   116
        invoked via #self-sends.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   117
        This should be changed and scanner ought to be an instance variable
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   118
        of Parser - this allows more flexible use of the scanner/parser
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   119
        framework (i.e. changing the scanner without affecting the parser).
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   120
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
   121
    Extensions:
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
   122
        this scanner allows for 3-character binary selectors.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
   123
        also, # is a valid selector. (however, ## is currently scanned as a symbol literal).
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
   124
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   125
    [author:]
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   126
        Claus Gittinger
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   127
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   128
    [see also:]
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   129
        Parser
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
   130
"
41
62214c6ca833 allow turning off warnings
claus
parents: 38
diff changeset
   131
! !
62214c6ca833 allow turning off warnings
claus
parents: 38
diff changeset
   132
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   133
!Scanner class methodsFor:'initialization'!
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   134
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   135
binarySelectorCharacters
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   136
    "return a collection of characters which are allowed in binary selectors"
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   137
2487
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   138
    ^ '&-+=*/\<>~@,?!!|%#'.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   139
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   140
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   141
extendedBinarySelectorCharacters
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   142
    "return a collection of characters which are optionally allowed in binary selectors"
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   143
2487
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   144
"/    ^ '±×·÷'.
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   145
    ^ String
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   146
        with:(Character value:16rB1)  "/ plus-minus
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   147
        with:(Character value:16rD7)  "/ times
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   148
        with:(Character value:16rB7)  "/ centered dot
d6d546fadbd0 changed:
Stefan Vogel <sv@exept.de>
parents: 2486
diff changeset
   149
        with:(Character value:16rF7).  "/ divide
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   150
!
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   151
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   152
setupActions
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   153
    "initialize the scanners actionTables - these are used to dispatch
2141
de005dc56384 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
   154
     into scanner methods as characters are read.
de005dc56384 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
   155
     Compatibility note: in previous versions, these tables used to be kept
de005dc56384 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
   156
     in classVariables, which made reuse hard as subclasses had no easy way of
de005dc56384 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
   157
     defining their own tables. These are now class instance variables."
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   158
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   159
    |block actionArray typeArray unicodeActions|
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   160
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   161
    actionArray := Array new:256.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   162
    typeArray := Array new:256.
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   163
    unicodeActions := Dictionary new.
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   164
1303
f726ae1bc0d2 comment
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
   165
    "/ TODO: later versions should be configurable w.r.t separators.
f726ae1bc0d2 comment
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
   166
    "/ #(9 10 12 13 26 32) do: [:i | TypeArray at:(i+1) put: #separator].
f726ae1bc0d2 comment
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
   167
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   168
    block := [:s :char | s nextNumber].
1489
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
   169
    ($0 codePoint) to:($9 codePoint) do:[:index |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   170
        actionArray at:index put:block
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   171
    ].
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   172
87
claus
parents: 83
diff changeset
   173
    block := [:s :char | s nextSpecial].
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   174
    self binarySelectorCharacters do:[:binop |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   175
        typeArray at:(binop codePoint) put:#special.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   176
        actionArray at:(binop codePoint) put:block
87
claus
parents: 83
diff changeset
   177
    ].
2146
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   178
    block := [:s :char | s nextExtendedSpecial:char].
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   179
    self extendedBinarySelectorCharacters do:[:binop |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   180
        typeArray at:(binop codePoint) put:#extendedSpecial.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   181
        actionArray at:(binop codePoint) put:block
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   182
    ].
87
claus
parents: 83
diff changeset
   183
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   184
    "/ that one is a special case (both binarySelector AND syntax).
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   185
    typeArray at:($| codePoint) put:nil.
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   186
87
claus
parents: 83
diff changeset
   187
    block := [:s :char | s nextToken:char].
1510
875c90576897 Fix duplicate assignment to ActionArray for sh
Stefan Vogel <sv@exept.de>
parents: 1509
diff changeset
   188
    ';.^|()[]{}' do:[:ch |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   189
        actionArray at:(ch codePoint) put:block
87
claus
parents: 83
diff changeset
   190
    ].
claus
parents: 83
diff changeset
   191
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   192
    block := [:s :char | s nextIdentifier].
1489
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
   193
    ($a codePoint) to:($z codePoint) do:[:index |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   194
        actionArray at:index put:block
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   195
    ].
1489
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
   196
    ($A codePoint) to:($Z codePoint) do:[:index |
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   197
        actionArray at:index put:block
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   198
    ].
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   199
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   200
    "kludge: action is characterToken, but type is special"
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   201
    typeArray at:($| codePoint) put:#special.
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   202
80
101b42803846 *** empty log message ***
claus
parents: 76
diff changeset
   203
    "kludge: action is nextColonOrAssign, but type is special"
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   204
    typeArray at:($: codePoint) put:#special.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   205
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   206
    actionArray at:($' codePoint) put:[:s :char | s nextString:char].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   207
    actionArray at:($$ codePoint) put:[:s :char | s nextCharacter].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   208
    actionArray at:($# codePoint) put:[:s :char | s nextHash].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   209
    actionArray at:($!! codePoint) put:[:s :char | s nextExcla].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   210
    actionArray at:($% codePoint) put:[:s :char | s nextPrimitive].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   211
    actionArray at:($: codePoint) put:[:s :char | s nextColonOrAssign].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   212
    actionArray at:($_ codePoint) put:[:s :char | s nextUnderline].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   213
2486
21fcd67e32a0 changed: #setupActions
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   214
    unicodeActions at:2190 "<- left arrow" put:[:s :char | s nextAssignmentArrow].
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   215
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   216
    ActionArray := DefaultActionArray := actionArray.
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   217
    TypeArray := DefaultTypeArray := typeArray.
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   218
    UnicodeActions := DefaultUnicodeActions := unicodeActions.
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   219
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   220
    "
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   221
     Scanner setupActions
2182
bce48a1e1367 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   222
     Scanner withAllSubclassesDo:[:cls | cls setupActions ]
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   223
    "
462
6a29b0b356fc added query for valid binarySelector characters
Claus Gittinger <cg@exept.de>
parents: 460
diff changeset
   224
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   225
    "Modified: / 25-03-2011 / 13:58:59 / cg"
33
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   226
! !
8985ec2f9e82 *** empty log message ***
claus
parents: 30
diff changeset
   227
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   228
!Scanner class methodsFor:'instance creation'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   229
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   230
for:aStringOrStream
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   231
    "create & return a new scanner reading from aStringOrStream"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   232
1235
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   233
    ^ self basicNew initializeFor:aStringOrStream
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   234
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   235
    "Modified: 23.5.1997 / 12:08:42 / cg"
854
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   236
!
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   237
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   238
new    
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   239
    "create & return a new scanner"
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   240
859
0e5dd0e35301 access to lineNumber added
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   241
    ^ self basicNew initialize.
854
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   242
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   243
    "Modified: / 23.5.1997 / 12:08:42 / cg"
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
   244
    "Created: / 26.5.1999 / 12:02:16 / stefan"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   245
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   246
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   247
!Scanner class methodsFor:'Signal constants'!
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   248
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
   249
doNotShowCompilerWarningAgainActionQuery
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
   250
    ^ DoNotShowCompilerWarningAgainActionQuery
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
   251
!
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
   252
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   253
emptySourceNotificationSignal
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   254
    ^ EmptySourceNotificationSignal
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   255
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   256
    "Created: / 16.5.1998 / 15:55:14 / cg"
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   257
! !
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   258
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   259
!Scanner class methodsFor:'accessing'!
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   260
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   261
actionArray
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   262
    ActionArray isNil ifTrue:[
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   263
        self setupActions
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   264
    ].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   265
    ^ ActionArray ? DefaultActionArray
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   266
!
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   267
2146
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   268
flushActionArray
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   269
    ActionArray := DefaultActionArray := nil.
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   270
    TypeArray := DefaultTypeArray := nil.
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   271
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   272
    "
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   273
     Scanner flushActionArray
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   274
     Parser flushActionArray
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   275
     ByteCodeCompiler flushActionArray
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   276
     Explainer flushActionArray
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   277
    "
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   278
!
ef93cbd5af40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
   279
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   280
typeArray
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   281
    TypeArray isNil ifTrue:[
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   282
        self setupActions
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   283
    ].
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   284
    ^ TypeArray ? DefaultTypeArray
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   285
!
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   286
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   287
unicodeActions
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   288
    UnicodeActions isNil ifTrue:[
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   289
        self setupActions
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   290
    ].
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   291
    ^ UnicodeActions ? DefaultUnicodeActions
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   292
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
   293
    "Created: / 25-03-2011 / 13:57:34 / cg"
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   294
! !
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
   295
717
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   296
!Scanner class methodsFor:'class initialization'!
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   297
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   298
initialize
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   299
    "initialize the classes defaults. Typically, these are changed
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   300
     later in the 'private.rc' file."
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   301
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   302
    EmptySourceNotificationSignal isNil ifTrue:[
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   303
        EmptySourceNotificationSignal := QuerySignal new mayProceed:true.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   304
        EmptySourceNotificationSignal notifierString:'empty source given to evaluate'.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   305
        EmptySourceNotificationSignal nameClass:self message:#emptySourceNotificationSignal.
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   306
    ].
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   307
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   308
    "
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   309
     self initialize
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   310
    "
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   311
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   312
    "Modified: / 16.5.1998 / 15:55:41 / cg"
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   313
! !
627b2379d5ce moved signal to scanner
Claus Gittinger <cg@exept.de>
parents: 714
diff changeset
   314
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   315
!Scanner class methodsFor:'defaults'!
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   316
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   317
allowDollarInIdentifier
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   318
    "return true, if $-characters are allowed in identifiers.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   319
     Notice, that dollars are NEVER allowed as the first character in an identifier."
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   320
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   321
    ^ ParserFlags allowDollarInIdentifier
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   322
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   323
    "Created: 7.9.1997 / 01:32:18 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   324
    "Modified: 7.9.1997 / 01:39:44 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   325
!
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   326
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   327
allowDollarInIdentifier:aBoolean
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   328
    "this allows turning on/off $-characters in identifiers.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   329
     Notice, that dollars are NEVER allowed as the first character in an identifier.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   330
     If turned off (the default), dollars are not allowed in identifiers,
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   331
     but instead are scanned as character-constant prefix.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   332
     If turned on, dollars are in identifiers are allowed, while extra
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   333
     dollars are still scanned as constant character prefix.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   334
     If you have to fileIn old VW-Vsn2.x classes, turn this off
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   335
     before filing them in; i.e.:
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   336
        Compiler allowDollarInIdentifiers:false"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   337
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   338
    ParserFlags allowDollarInIdentifier:aBoolean.
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   339
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   340
    "Created: 7.9.1997 / 01:34:49 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   341
    "Modified: 7.9.1997 / 01:39:30 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   342
!
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   343
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   344
allowDolphinExtensions
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   345
    "return true, if ##(..) computed literal Arrays are allowed"
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   346
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   347
    ^ ParserFlags allowDolphinExtensions
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   348
!
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   349
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   350
allowDolphinExtensions:aBoolean
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   351
    "this allows turning on/off support for computed literal Arrays ##(..) as in dolphin.
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   352
     If you want to fileIn Dolphin classes, enable this with:
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   353
        Compiler allowDolphinComputedArrays:true"
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   354
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   355
    ParserFlags allowDolphinExtensions:aBoolean.
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   356
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   357
    "
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   358
     self allowDolphinExtensions:true
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   359
     self allowDolphinExtensions:false
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   360
    "
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   361
!
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
   362
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   363
allowLiteralNameSpaceSymbols
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   364
    "return true, if literal nameSpace symbols are allowed (#foo::bar) are allowed"
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   365
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   366
    ^ AllowLiteralNameSpaceSymbols
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   367
!
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   368
1261
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   369
allowOldStyleAssignment
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   370
    "return true, if underscore-assignment (pre ST-80v4 syntax) are to be allowed"
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   371
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   372
    ^ ParserFlags allowOldStyleAssignment
1261
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   373
!
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   374
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   375
allowOldStyleAssignment:aBoolean
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   376
    "this allows turning on/off recognition of underscore-assignment (pre ST-80v4 syntax).
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   377
     You must turn this off, if code with variables named '_' is to be filedIn"
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   378
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   379
    ParserFlags allowOldStyleAssignment:aBoolean
1261
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   380
!
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
   381
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   382
allowQualifiedNames
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   383
    "return true, if #{..} qualified names are allowed"
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   384
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   385
    ^ ParserFlags allowQualifiedNames
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   386
!
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   387
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   388
allowQualifiedNames:aBoolean
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   389
    "this allows turning on/off support for qualifiedNames #{ .., } as in vw3.
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   390
     If you want to fileIn vw3 or later classes, enable this with:
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   391
        Compiler allowQualifiedNames:true
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   392
     Notice, that qualified names are not really supported semantically
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   393
     (they are parsed, but treated like regular globals)
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   394
    "
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   395
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   396
    ParserFlags allowQualifiedNames:aBoolean.
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   397
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   398
    "
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   399
     self allowQualifiedNames:true
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   400
     self allowQualifiedNames:false
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   401
    "
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   402
!
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
   403
895
0d44de8940c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   404
allowSqueakExtensions
1530
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   405
    "return true, if support for squeak extensions
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   406
        computed arrays { .., }
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   407
        c/java style arguments in message sends rec foo(arg1, ... argN)
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   408
     is enabled."
893
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   409
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   410
    ^ ParserFlags allowSqueakExtensions
893
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   411
!
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   412
895
0d44de8940c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   413
allowSqueakExtensions:aBoolean
1530
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   414
    "this allows turning on/off support for squeak extensions:
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   415
        computed arrays { .., }
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   416
        c/java style arguments in message sends rec foo(arg1, ... argN)
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   417
893
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   418
     If you want to fileIn Squeak classes, enable this with:
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   419
        Compiler allowSqueakComputedArrays:true"
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   420
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   421
    ParserFlags allowSqueakExtensions:aBoolean.
893
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   422
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   423
    "
895
0d44de8940c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   424
     self allowSqueakExtensions:true
0d44de8940c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   425
     self allowSqueakExtensions:false
893
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   426
    "
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   427
!
9fcb0294a51e changes to support loading squeak code containing computed
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   428
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   429
allowUnderscoreInIdentifier
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   430
    "return true, if underscores are allowed in identifiers"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   431
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   432
    ^ ParserFlags allowUnderscoreInIdentifier
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   433
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   434
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   435
allowUnderscoreInIdentifier:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   436
    "this allows turning on/off underscores in identifiers.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   437
     If turned off (the default), underscores are not allowed in identifiers,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   438
     but instead scanned as assignment character (old ST/80 syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   439
     If turned on, underscores are in identifiers are allowed, while extra
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   440
     underscores are still scanned as assignment.
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   441
     If you have to fileIn old VW-Vsn2.x classes, 
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   442
     turn them off with:
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   443
        Compiler allowUnderscoreInIdentifiers:false"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   444
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   445
    ParserFlags allowUnderscoreInIdentifier:aBoolean.
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   446
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   447
    "Modified: 7.9.1997 / 01:35:19 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   448
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   449
1644
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   450
maxBinarySelectorSize
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   451
    ^ 3
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   452
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   453
    "
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   454
     in ST/X, binops are allowed with up-to 3 characters;
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   455
     for example:
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   456
        <->
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   457
        <=>
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   458
        +++
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   459
        :=:
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   460
     etc. are valid binOps here
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   461
    "
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   462
!
1991a9e37aef numArgs fixed (binOps can now be longer)
Claus Gittinger <cg@exept.de>
parents: 1636
diff changeset
   463
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   464
warnCommonMistakes
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   465
    "return true, if common beginners mistakes are to be warned about"
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   466
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   467
    ^ ParserFlags warnCommonMistakes
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   468
!
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   469
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   470
warnCommonMistakes:aBoolean
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   471
    "this allows turning on/off warnings about common beginners mistakes.
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   472
     Those are not really errors in the strict sense, but often lead to
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   473
     run time errors later.
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   474
     Examples are: expr or:expr2, where expr2 is not a block.
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   475
     If you get bored by those warnings, turn them off by adding
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   476
     a line as:
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   477
        Compiler warnCommonMistakes:false
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   478
     in your 'private.rc' file"
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   479
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   480
    ParserFlags warnCommonMistakes:aBoolean
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   481
!
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
   482
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   483
warnDollarInIdentifier
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   484
    "return true, if $-characters in identifiers are to be warned about"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   485
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   486
    ^ ParserFlags warnDollarInIdentifier
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   487
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   488
    "Created: 7.9.1997 / 01:36:17 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   489
!
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   490
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   491
warnDollarInIdentifier:aBoolean
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   492
    "this allows turning on/off warnings about $-characters in identifiers.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   493
     You may find those warnings useful, to make certain that your code
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   494
     is portable to other smalltalk versions, which do not allow this
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   495
     (i.e. VW releases 2.x and maybe others).
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   496
     Notice, that dollars are NEVER allowed as the first character in an identifier.
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   497
     If you get bored by those warnings, turn them off by adding
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   498
     a line as:
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   499
        Compiler warnDollarInIdentifier:false
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   500
     in your 'private.rc' file"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   501
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   502
    ParserFlags warnDollarInIdentifier:aBoolean
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   503
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   504
    "Created: 7.9.1997 / 01:37:42 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   505
    "Modified: 7.9.1997 / 01:40:02 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   506
!
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   507
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   508
warnOldStyleAssignment
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   509
    "return true, if underscore-assignment (pre ST-80v4 syntax) are to be warned about"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   510
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   511
    ^ ParserFlags warnOldStyleAssignment
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   512
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   513
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   514
warnOldStyleAssignment:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   515
    "this allows turning on/off warnings about underscore-assignment (pre ST-80v4 syntax).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   516
     If you get bored by those warnings, turn them off by adding
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   517
     a line as:
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   518
        Compiler warnOldStyleAssignment:false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   519
     in your 'private.rc' file"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   520
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   521
    ParserFlags warnOldStyleAssignment:aBoolean
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   522
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   523
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   524
warnPossibleIncompatibilities
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   525
    "return true, if possible incompatibilities (with other ST systems)
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   526
     are to be warned about"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   527
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   528
    ^ ParserFlags warnPossibleIncompatibilities
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   529
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   530
    "Modified: 23.5.1997 / 12:02:02 / cg"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   531
!
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   532
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   533
warnPossibleIncompatibilities:aBoolean
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   534
    "this turns warnings about possible incompatibilities (with other ST systems)
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   535
     on or off.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   536
     If you get bored by those warnings, turn them off by adding
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   537
     a line as:
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   538
        Compiler warnPossibleIncompatibilities:false
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   539
     in your 'private.rc' file."
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   540
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   541
    ParserFlags warnPossibleIncompatibilities:aBoolean
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   542
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   543
    "Created: 23.5.1997 / 12:02:45 / cg"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   544
!
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   545
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   546
warnSTXSpecials
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   547
    "return true, if ST/X specials are to be warned about"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   548
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   549
    ^ ParserFlags warnSTXSpecials
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   550
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   551
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   552
warnSTXSpecials:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   553
    "this allows turning on/off warnings about stx specials.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   554
     If you get bored by those warnings, turn them off by adding
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   555
     a line as:
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   556
        Compiler warnSTXSpecials:false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   557
     in your 'private.rc' file"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   558
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   559
    ParserFlags warnSTXSpecials:aBoolean
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   560
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   561
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   562
warnUnderscoreInIdentifier
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   563
    "return true, if underscores in identifiers are to be warned about"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   564
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   565
    ^ ParserFlags warnUnderscoreInIdentifier
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   566
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   567
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   568
warnUnderscoreInIdentifier:aBoolean
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   569
    "this allows turning on/off warnings about underscores in identifiers.
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   570
     You may find those warnings useful, to make certain that your code
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   571
     is portable to other smalltalk versions, which do not allow this
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   572
     (i.e. VW releases 2.x).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   573
     If you get bored by those warnings, turn them off by adding
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   574
     a line as:
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   575
        Compiler warnUnderscoreInIdentifier:false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   576
     in your 'private.rc' file"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   577
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   578
    ParserFlags warnUnderscoreInIdentifier:aBoolean
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   579
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
   580
    "Modified: 7.9.1997 / 01:37:13 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   581
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   582
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   583
warnings
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   584
    "return true, if any warnings are to be shown"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   585
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   586
    ^ ParserFlags warnings
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   587
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   588
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   589
warnings:aBoolean
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   590
    "this allows turning on/off all warnings; the default is on.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   591
     You can turn off warnings in your 'private.rc' file with
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   592
         Compiler warnings:false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   593
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   594
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
   595
    ParserFlags warnings:aBoolean
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   596
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   597
    "Modified: 23.5.1997 / 12:03:05 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   598
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   599
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   600
!Scanner class methodsFor:'utility scanning'!
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   601
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   602
scanNumberFrom:aStream
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   603
    "utility - helper for Number>>readSmalltalkSyntaxFrom:"
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   604
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   605
    ^ self basicNew scanNumberFrom:aStream
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   606
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   607
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   608
     |s|
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   609
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   610
     s := '12345abcd' readStream.
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   611
     Transcript showCR:(self scanNumberFrom:s).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   612
     Transcript showCR:(s upToEnd).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   613
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   614
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   615
     |s|
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   616
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   617
     s := '16rffffxabcd' readStream.
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   618
     Transcript showCR:(self scanNumberFrom:s).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   619
     Transcript showCR:(s upToEnd).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   620
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   621
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   622
     |s|
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   623
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   624
     s := '1.2345abcd' readStream.
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   625
     Transcript showCR:(self scanNumberFrom:s).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   626
     Transcript showCR:(s upToEnd).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   627
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   628
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   629
     |s|
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   630
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   631
     s := '1.abcd' readStream.
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   632
     Transcript showCR:(self scanNumberFrom:s).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   633
     Transcript showCR:(s upToEnd).
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   634
    "
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   635
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   636
    "Modified: / 18.6.1998 / 23:10:39 / cg"
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   637
! !
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   638
1417
7e97dd2df5ca method category rename
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
   639
!Scanner methodsFor:'Compatibility-ST80'!
98
claus
parents: 97
diff changeset
   640
claus
parents: 97
diff changeset
   641
endOfLastToken
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   642
    "return the position of the token which was just read.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   643
     This method was required by some PD program.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   644
     It is not maintained and may be removed without notice."
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   645
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   646
    ^ source position1Based
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   647
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
   648
    "Modified: 23.5.1997 / 12:14:27 / cg"
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   649
!
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   650
630
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   651
scan:aStringOrStream 
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   652
    "initialize the scanner: set the source-stream and
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   653
     preread the first token"
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   654
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   655
    self initializeFor:aStringOrStream.
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   656
    self nextToken
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   657
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   658
    "Created: / 30.10.1997 / 16:59:39 / cg"
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   659
!
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   660
2139
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   661
scanDoing:aBlock
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   662
    "scan, evaluating aBlock for every scanned token."
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   663
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   664
    |t|
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   665
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   666
    [(t := self nextToken) ~~ #EOF] whileTrue:[
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   667
        aBlock value:t.
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   668
    ].
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   669
!
ff81d8aadd3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   670
630
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   671
scanToken
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   672
    "read the next token from my input stream"
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   673
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   674
    ^ self nextToken
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   675
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   676
    "Created: / 30.10.1997 / 17:00:16 / cg"
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   677
!
f2f75975b22e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   678
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   679
scanTokens:aStringOrStream
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   680
    "return a collection of symbolic tokens from the passed input"
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   681
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   682
    |tokens|
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   683
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   684
    self initializeFor:aStringOrStream.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   685
    tokens := OrderedCollection new.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   686
    self nextToken.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   687
    [token notNil] whileTrue:[
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   688
        tokens add:token.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   689
        self nextToken
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   690
    ].
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   691
    ^ tokens
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   692
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   693
    "
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   694
     Scanner new
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   695
        scanTokens:'Boolean subclass:#True
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   696
                                instanceVariableNames:''''
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   697
                                classVariableNames:''''
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   698
                                poolDictionaries:''''
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   699
                                category:''Kernel-Objects''
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   700
        '
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   701
    "
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   702
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   703
    "Modified: 20.6.1997 / 18:22:58 / cg"
98
claus
parents: 97
diff changeset
   704
! !
claus
parents: 97
diff changeset
   705
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   706
!Scanner methodsFor:'accessing'!
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   707
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   708
comments
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
   709
    ^ currentComments ? #()
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   710
!
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   711
1509
05509b7471c0 +exitBlock:
ca
parents: 1501
diff changeset
   712
exitBlock:aBlock
05509b7471c0 +exitBlock:
ca
parents: 1501
diff changeset
   713
    exitBlock := aBlock
05509b7471c0 +exitBlock:
ca
parents: 1501
diff changeset
   714
!
05509b7471c0 +exitBlock:
ca
parents: 1501
diff changeset
   715
2742
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   716
getCollectedComments
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   717
    "retrieve the so far collected comments, reset comment collection"
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   718
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   719
    |comments|
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   720
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   721
    (comments := currentComments) isEmptyOrNil ifTrue:[^ nil].
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   722
    currentComments := nil.
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   723
    ^ comments
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   724
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   725
    "Created: / 05-10-2011 / 10:09:01 / cg"
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   726
!
1da09935db64 added: #getCollectedComments
Claus Gittinger <cg@exept.de>
parents: 2741
diff changeset
   727
1202
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
   728
inArrayLiteral:aBoolean
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
   729
    inArrayLiteral := aBoolean
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
   730
!
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
   731
859
0e5dd0e35301 access to lineNumber added
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   732
lineNumber
0e5dd0e35301 access to lineNumber added
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   733
    ^ lineNr
0e5dd0e35301 access to lineNumber added
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   734
!
0e5dd0e35301 access to lineNumber added
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   735
795
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   736
newSourceStream:aStream
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   737
    source := aStream.
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   738
    self nextToken.
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   739
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   740
    "Created: / 29.10.1998 / 21:59:33 / cg"
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   741
!
d2c567b79091 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   742
1497
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
   743
outStream:aStream
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
   744
    outStream := aStream.
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
   745
    outCol := outCol ? 1.
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
   746
!
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
   747
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   748
saveComments:aBoolean
1582
701f40070c8a comments returns a collection
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   749
    saveComments := aBoolean.
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   750
2737
4f75ad8cb18d comment
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
   751
    "Created: / 20-04-1996 / 20:03:56 / cg"
4f75ad8cb18d comment
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
   752
    "Modified: / 23-05-1997 / 12:14:49 / cg"
4f75ad8cb18d comment
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
   753
    "Modified (comment): / 04-10-2011 / 15:35:51 / cg"
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   754
!
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   755
1242
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
   756
sourcePosition
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
   757
    ^ source position1Based
1242
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
   758
!
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
   759
2678
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   760
sourcePositionWithoutPeeks
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   761
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   762
    | pos |
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   763
    pos := self sourcePosition.
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   764
    peekChar2 notNil ifTrue:[^ pos - 2].
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   765
    peekChar  notNil ifTrue:[^ pos - 1].
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   766
    ^pos
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   767
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   768
    "Created: / 25-08-2011 / 11:19:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   769
!
fc0df237f01e Fixes in start/endPosition for Variable node
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2612
diff changeset
   770
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   771
sourceStream
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   772
    ^ source
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   773
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   774
    "Created: 20.4.1996 / 19:59:58 / cg"
1235
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   775
!
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   776
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   777
tokenLineNr
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   778
    ^ tokenLineNr
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   779
!
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   780
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   781
tokenName
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   782
    ^ tokenName
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   783
!
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   784
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   785
tokenPosition
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   786
    ^ tokenPosition
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   787
!
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   788
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   789
tokenType
fc0ccb509f4e accessors (to allow using scanner as instVar in parser)
Claus Gittinger <cg@exept.de>
parents: 1226
diff changeset
   790
    ^ tokenType
1238
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   791
!
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   792
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   793
tokenValue
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   794
    ^ tokenValue
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   795
dbdc690e7170 token access
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   796
    "Created: / 21.12.2001 / 22:38:08 / cg"
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   797
! !
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   798
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   799
!Scanner methodsFor:'accessing-flags'!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   800
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   801
allowDollarInIdentifier
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   802
    ^ parserFlags allowDollarInIdentifier
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   803
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   804
1511
c28bade9caf6 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1510
diff changeset
   805
allowDollarInIdentifier:something
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   806
    parserFlags allowDollarInIdentifier:something
1511
c28bade9caf6 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1510
diff changeset
   807
!
c28bade9caf6 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1510
diff changeset
   808
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   809
allowLiteralNameSpaceSymbols
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   810
    ^ parserFlags allowLiteralNameSpaceSymbols
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   811
!
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   812
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   813
allowLiteralNameSpaceSymbols:aBoolean
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   814
    parserFlags allowLiteralNameSpaceSymbols:aBoolean
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   815
!
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
   816
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   817
allowOldStyleAssignment
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   818
    ^ parserFlags allowOldStyleAssignment
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   819
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   820
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   821
allowOldStyleAssignment:aBoolean
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   822
    parserFlags allowOldStyleAssignment:aBoolean
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   823
!
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   824
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   825
allowSqueakExtensions
1530
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   826
    "return true, if support for squeak extensions
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   827
        computed arrays { .., }
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   828
        c/java style arguments in message sends rec foo(arg1, ... argN)
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   829
     is enabled."
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   830
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   831
    ^ parserFlags allowSqueakExtensions
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   832
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   833
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   834
allowSqueakExtensions:aBoolean
1530
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   835
    "this allows turning on/off support for squeak extensions:
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   836
        computed arrays { .., }
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   837
        c/java style arguments in message sends rec foo(arg1, ... argN)
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   838
    "
ed400d564510 comments
Claus Gittinger <cg@exept.de>
parents: 1511
diff changeset
   839
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   840
    parserFlags allowSqueakExtensions:aBoolean
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   841
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   842
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   843
allowUnderscoreInIdentifier
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   844
    ^ parserFlags allowUnderscoreInIdentifier
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   845
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   846
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   847
allowUnderscoreInIdentifier:aBoolean
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   848
    parserFlags allowUnderscoreInIdentifier:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   849
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   850
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   851
parserFlags
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   852
    ^ parserFlags
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   853
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   854
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   855
parserFlags:aParserFlagsInstance
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   856
    parserFlags := aParserFlagsInstance
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   857
!
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
   858
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   859
scanColonAsKeyword
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   860
    "/ not used here, but eases subclassing for other languages.
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   861
    ^ scanColonAsKeyword
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   862
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   863
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   864
warnCommonMistakes
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   865
    ^ parserFlags warnCommonMistakes
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   866
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   867
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   868
warnCommonMistakes:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   869
    parserFlags warnCommonMistakes:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   870
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   871
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   872
warnDollarInIdentifier
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   873
    ^ parserFlags warnDollarInIdentifier
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   874
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   875
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   876
warnDollarInIdentifier:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   877
    parserFlags warnDollarInIdentifier:aBoolean
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   878
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   879
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   880
warnOldStyleAssignment
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   881
    ^ parserFlags warnOldStyleAssignment
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   882
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   883
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   884
warnOldStyleAssignment:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   885
    parserFlags warnOldStyleAssignment:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   886
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   887
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   888
warnPossibleIncompatibilities
2058
3d2daea65184 comment
Claus Gittinger <cg@exept.de>
parents: 2047
diff changeset
   889
    "return true, if possible incompatibilities (with other ST systems)
3d2daea65184 comment
Claus Gittinger <cg@exept.de>
parents: 2047
diff changeset
   890
     are to be warned about"
3d2daea65184 comment
Claus Gittinger <cg@exept.de>
parents: 2047
diff changeset
   891
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   892
    ^ parserFlags warnPossibleIncompatibilities
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   893
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   894
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   895
warnPossibleIncompatibilities:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   896
    parserFlags warnPossibleIncompatibilities:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   897
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   898
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   899
warnSTXNameSpaceUse
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   900
    ^ parserFlags warnSTXNameSpaceUse
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   901
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   902
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   903
warnSTXNameSpaceUse:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   904
    parserFlags warnSTXNameSpaceUse:aBoolean
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   905
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   906
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   907
warnSTXSpecialComment
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   908
    ^ parserFlags warnSTXSpecialComment
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   909
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   910
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   911
warnSTXSpecialComment:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   912
    parserFlags warnSTXSpecialComment:aBoolean
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   913
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   914
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
   915
warnUnderscoreInIdentifier
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   916
    ^ parserFlags warnUnderscoreInIdentifier
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   917
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   918
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   919
warnUnderscoreInIdentifier:aBoolean
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
   920
    parserFlags warnUnderscoreInIdentifier:aBoolean
254
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   921
! !
edfcf93d821f changes to allow parsing for comments
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
   922
81
37ebe600119c *** empty log message ***
claus
parents: 80
diff changeset
   923
!Scanner methodsFor:'directives'!
37ebe600119c *** empty log message ***
claus
parents: 80
diff changeset
   924
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   925
parseClassDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   926
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   927
     Class: className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   928
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   929
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   930
    |className|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   931
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   932
    className := self parseDirectiveClassNameArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   933
    className isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   934
        Transcript showCR:'unrecognized ''Class'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   935
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   936
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   937
    lastDirective := Directive newClassDirective className:className.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   938
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   939
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   940
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   941
parseClassHintDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   942
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   943
     ClassHint: className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   944
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   945
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   946
    |className|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   947
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   948
    className := self parseDirectiveClassNameArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   949
    className isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   950
        Transcript showCR:'unrecognized ''ClassHint'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   951
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   952
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   953
    lastDirective := Directive newClassHintDirective className:className.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   954
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   955
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   956
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   957
parseDirective
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   958
    "parse a directive inside a comment (introduced with '{').
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   959
     This is an ST/X special"
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   960
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   961
    |directive|
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   962
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   963
    source next.
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   964
    source skipSeparatorsExceptCR.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
   965
    hereChar := source peekOrNil.
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   966
    hereChar isLetter ifTrue:[
1960
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
   967
        directive := source nextAlphaNumericWord asLowercase.
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   968
        source peekOrNil == $: ifTrue:[
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   969
            source next.
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   970
            source skipSeparatorsExceptCR.
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   971
            hereChar := source peekOrNil.
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   972
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   973
            "
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   974
             Package: 'name-of-package'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   975
             Package: packageId
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   976
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   977
            directive = 'package' ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   978
                self parsePackageDirective.
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   979
            ].
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
   980
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   981
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   982
             Namespace: 'nameSpaceIdentifier'
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   983
             Namespace: nameSpaceIdentifier
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   984
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   985
            (directive = 'namespace') ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   986
                self parseNamespaceDirective.
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   987
            ].
81
37ebe600119c *** empty log message ***
claus
parents: 80
diff changeset
   988
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   989
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   990
             Uses: 'nameSpace1', ... , 'nameSpaceN'
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   991
             Uses: nameSpaceId1, ... , nameSpaceIdN
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   992
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   993
            directive = 'uses' ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
   994
                self parseUsesDirective.
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   995
            ].
413
cdd4919c2e7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   996
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
   997
            "
1960
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
   998
             reuires: 'name-of-feature'
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
   999
            "
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1000
            directive = 'requires' ifTrue:[
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1001
                self parseRequiresDirective.
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1002
            ].
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1003
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1004
            "
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  1005
             Prerequisites: 'name-of-package', ... , 'name-of-package'
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  1006
            "
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  1007
            directive = 'prerequisites' ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1008
                self parsePrerequisitesDirective.
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  1009
            ].
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1010
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1011
            "
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1012
             Syntax: 'name-of-dialect'
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1013
            "
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1014
            directive = 'syntax' ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1015
                self parseSyntaxDirective.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1016
            ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1017
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1018
            "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1019
             Class: className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1020
            "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1021
            directive = 'class' ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1022
                self parseClassDirective.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1023
            ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1024
            "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1025
             ClassHint: className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1026
            "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1027
            directive = 'classhint' ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1028
                self parseClassHintDirective.
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  1029
            ].
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  1030
        ]
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
  1031
    ].
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  1032
    hereChar := source peekOrNil.
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  1033
    ^ true.
413
cdd4919c2e7f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
  1034
1960
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1035
    "Modified: / 06-12-2006 / 16:14:54 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1036
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1037
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1038
parseDirectiveClassNameArg
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1039
    "helper for parsing a directive"
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1040
1949
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1041
    ^ self 
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1042
        parseDirectiveStringArg:[:ch | ch isLetter or:[ch == $_]]
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1043
                           rest:[:ch | ch isLetterOrDigit or:[ch == $_ or:[ch == $:]]]
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1044
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1045
    "Modified: / 18-11-2006 / 14:48:07 / cg"
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1046
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1047
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1048
parseDirectiveStringArg
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1049
    "helper for parsing a directive"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1050
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1051
    ^ self parseDirectiveStringArg:[:ch | ch isLetter or:[ch == $_]]
1949
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1052
                              rest:[:ch | ch isLetterOrDigit or:[ch == $_]]
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1053
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1054
    "Modified: / 18-11-2006 / 14:47:12 / cg"
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1055
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1056
1949
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1057
parseDirectiveStringArg:firstCharacterCheckBlock rest:restCharacterCheckBlock
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1058
    "helper for parsing a directive"
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1059
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1060
    |strBuffer|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1061
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1062
    strBuffer := WriteStream on:(String new).
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1063
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1064
    hereChar == $' ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1065
        hereChar := source nextPeek.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1066
        [hereChar ~~ $'] whileTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1067
            strBuffer nextPut:hereChar.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1068
            hereChar := source nextPeek.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1069
        ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1070
        hereChar := source nextPeek.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1071
        ^ strBuffer contents
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1072
    ].
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1073
1949
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1074
    (firstCharacterCheckBlock value:hereChar) ifTrue:[
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1075
        strBuffer nextPut:hereChar.
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1076
        hereChar := source nextPeek.
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1077
        [restCharacterCheckBlock value:hereChar] whileTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1078
            strBuffer nextPut:hereChar.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1079
            hereChar := source nextPeek.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1080
        ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1081
        ^ strBuffer contents
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  1082
    ].
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  1083
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1084
    ^ nil
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  1085
1949
709ca062cf98 oops: namespace directive scanned the ns-argument wrong (ignored digits)
Claus Gittinger <cg@exept.de>
parents: 1948
diff changeset
  1086
    "Created: / 18-11-2006 / 14:46:09 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1087
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1088
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1089
parseDirectiveStringListArg
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1090
    "helper for parsing a directive"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1091
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1092
    |list|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1093
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1094
    list := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1095
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1096
    [hereChar == $'] whileTrue:[
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1097
        list addLast:self parseDirectiveStringArg.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1098
        source skipSeparatorsExceptCR.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  1099
        hereChar := source peekOrNil.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1100
        (hereChar == $,) ifTrue:[
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1101
            source next.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1102
            source skipSeparatorsExceptCR.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  1103
            hereChar := source peekOrNil.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1104
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1105
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1106
    ^ list
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1107
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  1108
    "Modified: / 5.3.1998 / 02:55:40 / cg"
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1109
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1110
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1111
parseNamespaceDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1112
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1113
     Namespace: 'nameSpace'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1114
     Namespace: nameSpace
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1115
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1116
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1117
    |namespace target|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1118
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1119
    namespace := self parseDirectiveStringArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1120
    namespace isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1121
        Transcript showCR:'unrecognized ''Namespace'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1122
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1123
    ].
1649
f2ee84d53383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
  1124
    target := (requestor notNil and:[ requestor respondsTo:#setNameSpace: ]) ifTrue:[requestor] ifFalse:[self].
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1125
    target setNameSpace:namespace.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1126
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1127
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1128
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1129
parsePackageDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1130
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1131
     Package: 'name-of-package'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1132
     Package: packageId
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1133
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1134
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1135
    |packageName target|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1136
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1137
    packageName := self parseDirectiveStringArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1138
    packageName isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1139
        Transcript showCR:'unrecognized ''Package'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1140
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1141
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1142
    packageName := packageName asSymbol.
1649
f2ee84d53383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
  1143
    target := (requestor notNil and:[ requestor respondsTo:#setPackage: ]) ifTrue:[requestor] ifFalse:[self].
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1144
    target setPackage:packageName.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1145
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1146
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1147
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1148
parsePrerequisitesDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1149
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1150
     Prerequisites: 'name-of-package1', ... , 'name-of-packageN'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1151
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1152
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1153
    |list|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1154
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1155
    list := self parseDirectiveStringListArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1156
    list isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1157
        Transcript showCR:'unrecognized ''Prerequisites'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1158
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1159
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1160
    (requestor notNil and:[requestor respondsTo:#requirePackages:]) ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1161
        requestor requirePackages:list 
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1162
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1163
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1164
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1165
1960
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1166
parseRequiresDirective
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1167
    "
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1168
     Require: 'name-of-feature', ... , 'name-of-featureN'
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1169
    "
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1170
    
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1171
    |list|
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1172
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1173
    list := self parseDirectiveStringListArg.
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1174
    list isNil ifTrue:[
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1175
        Transcript showCR:'unrecognized ''Requires'' directive'.
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1176
        ^ false
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1177
    ].
2064
42c037a6e20d sharedPool access in doIts
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
  1178
"/ self halt.
1960
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1179
    (requestor notNil and:[requestor respondsTo:#requireFeatures:]) ifTrue:[
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1180
        requestor requireFeatures:list 
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1181
    ].
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1182
    ^ true
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1183
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1184
    "Created: / 06-12-2006 / 16:14:43 / cg"
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1185
!
e691057e14c2 requires directive.
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  1186
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1187
parseSyntaxDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1188
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1189
     Syntax: 'st-syntax-id'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1190
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1191
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1192
    |syntax target|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1193
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1194
    syntax := self parseDirectiveStringArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1195
    syntax isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1196
        Transcript showCR:'unrecognized ''Syntax'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1197
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1198
    ].
1649
f2ee84d53383 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
  1199
    target := (requestor notNil and:[ requestor respondsTo:#setSyntax: ]) ifTrue:[requestor] ifFalse:[self].
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1200
    target setSyntax:syntax.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1201
    ^ true
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1202
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1203
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1204
parseUsesDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1205
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1206
     Uses: 'nameSpace1', ... , 'nameSpaceN'
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1207
     Uses: nameSpaceId1, ... , nameSpaceIdN
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1208
    "
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1209
    
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1210
    |list|
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1211
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1212
    list := self parseDirectiveStringListArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1213
    list isNil ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1214
        Transcript showCR:'unrecognized ''Uses'' directive'.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1215
        ^ false
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1216
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1217
    (requestor notNil and:[requestor respondsTo:#addNameSpaces:]) ifTrue:[
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1218
        requestor addNameSpaces:list 
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1219
    ].
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  1220
    ^ true
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1221
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1222
1418
4aae7d34124a method category rename
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1223
!Scanner methodsFor:'dummy-syntax highlighting'!
659
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1224
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1225
markCommentFrom:pos1 to:pos2
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1226
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1227
    "Created: / 31.3.1998 / 13:34:45 / cg"
661
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  1228
!
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  1229
671
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1230
markConstantFrom:pos1 to:pos2
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1231
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1232
    "Created: / 1.4.1998 / 13:02:56 / cg"
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1233
!
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1234
661
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  1235
markStringFrom:pos1 to:pos2
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  1236
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  1237
    "Created: / 31.3.1998 / 16:37:18 / cg"
671
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1238
!
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1239
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1240
markSymbolFrom:pos1 to:pos2
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1241
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  1242
    "Created: / 1.4.1998 / 12:58:42 / cg"
659
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1243
! !
2bbc270156c7 support for syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  1244
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1245
!Scanner methodsFor:'error handling'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1246
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1247
correctableError:message position:pos1 to:pos2
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1248
    "report an error which can be corrected by compiler -
874
7872cc72b96e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 873
diff changeset
  1249
     return non-false, if correction is wanted (there is more than
7872cc72b96e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 873
diff changeset
  1250
     true/false returned here)"
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1251
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1252
    |correctIt|
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1253
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1254
    requestor isNil ifTrue:[
828
436585929a76 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 821
diff changeset
  1255
"/        self showErrorMessage:message position:pos1.
436585929a76 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 821
diff changeset
  1256
        correctIt := false
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1257
    ] ifFalse:[
828
436585929a76 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 821
diff changeset
  1258
        correctIt := requestor correctableError:message position:pos1 to:pos2 from:self
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1259
    ].
1492
943f98b9334d handle #Error from correctableError
penk
parents: 1489
diff changeset
  1260
943f98b9334d handle #Error from correctableError
penk
parents: 1489
diff changeset
  1261
    (correctIt == false or:[correctIt == #Error]) ifTrue:[
2877
8575935bb3b5 changed: #correctableError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  1262
        errorFlag := true.
1622
5a79277049ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  1263
        exitBlock value
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1264
    ].
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1265
    ^ correctIt
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1266
2877
8575935bb3b5 changed: #correctableError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  1267
    "Created: / 13-05-1998 / 16:45:56 / cg"
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1268
!
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1269
1023
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1270
correctableSelectorWarning:message position:pos1 to:pos2
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1271
    "report a warning which can be corrected by compiler -
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1272
     return non-false, if correction is wanted (there is more than
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1273
     true/false returned here)"
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1274
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1275
    |correctIt|
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1276
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1277
    requestor isNil ifTrue:[
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1278
        correctIt := false
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1279
    ] ifFalse:[
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1280
        DoNotShowCompilerWarningAgainActionQuery handle:[:ex |
2122
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1281
            parserFlags warnAboutPossiblyUnimplementedSelectors:false. 
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1282
            ParserFlags warnAboutPossiblyUnimplementedSelectors:false. 
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1283
            ex proceed.
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1284
        ] do:[
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1285
            correctIt := requestor correctableSelectorWarning:message position:pos1 to:pos2 from:self
c107161f3f52 turn on/off selector warnings
Claus Gittinger <cg@exept.de>
parents: 2064
diff changeset
  1286
        ]
1023
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1287
    ].
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1288
    correctIt == false ifTrue:[
1622
5a79277049ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  1289
        exitBlock value
1023
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1290
    ].
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1291
    ^ correctIt
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1292
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1293
    "Created: / 19-01-2000 / 16:28:03 / cg"
1023
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1294
!
6d16edd3b99c correctable selectors.
Claus Gittinger <cg@exept.de>
parents: 1020
diff changeset
  1295
2452
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1296
correctableWarning:message position:pos1 to:pos2
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1297
    "report an error which can be corrected by compiler -
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1298
     return non-false, if correction is wanted (there is more than
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1299
     true/false returned here)"
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1300
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1301
    |correctIt|
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1302
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1303
    requestor isNil ifTrue:[
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1304
"/        self showErrorMessage:message position:pos1.
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1305
        correctIt := false
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1306
    ] ifFalse:[
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1307
        correctIt := requestor correctableWarning:message position:pos1 to:pos2 from:self
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1308
    ].
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1309
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1310
    (correctIt == false or:[correctIt == #Error]) ifTrue:[
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1311
        exitBlock value
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1312
    ].
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1313
    ^ correctIt
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1314
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1315
    "Created: / 02-11-2010 / 13:32:32 / cg"
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1316
!
68a907bd9bd1 added: #correctableWarning:position:to:
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
  1317
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1318
disableWarningsOnCurrentMethodFor:flagName
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1319
    "ignored here"
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1320
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1321
    "Created: / 28-02-2012 / 14:44:43 / cg"
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1322
!
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1323
1073
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1324
errorMessagePrefix
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1325
    ^ 'Error:'
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1326
!
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1327
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1328
ignorableParseError:message
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1329
    self parseError:message.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1330
    "/ if proceeded, install method anyway (used with non-st/x primitives)
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1331
    errorFlag := false.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1332
!
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  1333
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1334
invalidCharacter:ch
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1335
    |errMsg v|
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1336
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1337
    v := ch codePoint.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1338
    ch isPrintable ifTrue:[
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1339
        errMsg := 'Invalid character: ''' , ch asString , ''' ', '(' , (v radixPrintStringRadix:16) , ').'.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1340
    ] ifFalse:[
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1341
        errMsg := 'Invalid character: ' , (v radixPrintStringRadix:16) , '.'.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1342
    ].
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1343
    v > 16r7F ifTrue:[
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1344
        errMsg := errMsg , '\\Notice: only 7-bit ascii allowed (for compatibility).' withCRs.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1345
    ].
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1346
    self syntaxError:errMsg position:tokenPosition to:tokenPosition.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1347
    source next.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1348
    tokenName := token := nil.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1349
    tokenType := #Error.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1350
    ^ #Error
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1351
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1352
    "Modified: / 22-08-2006 / 14:26:21 / cg"
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1353
!
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1354
431
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1355
lastTokenLineNumber
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1356
    "return the line number of the token which was just read."
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1357
431
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1358
    ^ tokenLineNr
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1359
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1360
    "Created: 8.11.1996 / 18:46:36 / cg"
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1361
    "Modified: 23.5.1997 / 12:16:12 / cg"
431
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1362
!
058e1ce760ea added access to lastTokenLineNr
Claus Gittinger <cg@exept.de>
parents: 426
diff changeset
  1363
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1364
notifyError:aMessage position:position to:endPos
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1365
    "notify requestor of an error - if there is no requestor
53
c5dd7abf8431 *** empty log message ***
claus
parents: 49
diff changeset
  1366
     put it on the transcript. Requestor is typically the CodeView
c5dd7abf8431 *** empty log message ***
claus
parents: 49
diff changeset
  1367
     in which the accept/doIt was triggered, or the PositionableStream
c5dd7abf8431 *** empty log message ***
claus
parents: 49
diff changeset
  1368
     which does the fileIn. The requestor may decide how to highlight the
c5dd7abf8431 *** empty log message ***
claus
parents: 49
diff changeset
  1369
     error (and/or to abort the compile).
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1370
     Return the result passed back by the requestor."
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1371
2858
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1372
    (Smalltalk isInitialized not and:[Smalltalk isStandAloneDebug]) ifTrue:[
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1373
        "/ error during startup, but sometimes we expect an error and want to supress it
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1374
        Parser parseWarningSignal query ~~ #ignore ifTrue:[
2961
d18fe23b336a changed:
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1375
            (self class name,' [error]: error during initialization:') errorPrint.
d18fe23b336a changed:
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1376
            aMessage errorPrintCR.
2786
214deaadce05 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2785
diff changeset
  1377
            thisContext fullPrintAll.
2858
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1378
        ].
2785
87cfec5ba268 changed: #notifyError:position:to:
az
parents: 2766
diff changeset
  1379
    ].
87cfec5ba268 changed: #notifyError:position:to:
az
parents: 2766
diff changeset
  1380
53
c5dd7abf8431 *** empty log message ***
claus
parents: 49
diff changeset
  1381
    ignoreErrors ifFalse:[
2333
87bb36ee7061 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1382
        "/ backward compatibility - will vanish eventually (use a handler, Luke)
87bb36ee7061 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1383
        requestor notNil ifTrue:[
87bb36ee7061 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1384
            requestor error:aMessage position:position to:endPos from:self.
87bb36ee7061 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1385
            ^ self
87bb36ee7061 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
  1386
        ].
2937
784c3f15a367 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2877
diff changeset
  1387
        Parser parseErrorSignal isHandled ifTrue:[
784c3f15a367 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2877
diff changeset
  1388
            Parser parseErrorSignal new
2858
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1389
                errorMessage:aMessage startPosition:position endPosition:endPos;
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1390
                parameter:self;
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1391
                lineNumber:tokenLineNr; "lineNr"
588ba3e53fd2 changed: #notifyError:position:to:
Stefan Vogel <sv@exept.de>
parents: 2854
diff changeset
  1392
                raiseRequest.
1648
0c1261bae0e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1644
diff changeset
  1393
            ^ self
0c1261bae0e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1644
diff changeset
  1394
        ].
0c1261bae0e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1644
diff changeset
  1395
        self showErrorMessage:aMessage position:position.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1396
    ].
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1397
2785
87cfec5ba268 changed: #notifyError:position:to:
az
parents: 2766
diff changeset
  1398
    "Modified: / 18-01-2012 / 14:54:22 / Alexander Zottnick"
2786
214deaadce05 changed: #notifyError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2785
diff changeset
  1399
    "Modified: / 19-01-2012 / 10:18:36 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1400
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1401
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1402
notifyWarning:aMessage doNotShowAgainAction:doNotShowAgainAction doNotShowAgainForThisMethodAction:doNotShowAgainForThisMethodAction position:position to:endPos
2455
acdcc9b42d41 comment/format in: #notifyWarning:doNotShowAgainAction:position:to:
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  1403
    "notify requestor of a warning - if there is no requestor, just ignore it.
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  1404
     Return the result passed back from the requestor (or false, if there is none)."
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1405
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1406
    |answer warnAction realAction real2Action|
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1407
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1408
    ignoreWarnings ifTrue:[ ^ false ].
2478
21ef13183fb5 changed: #notifyWarning:doNotShowAgainAction:position:to:
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1409
    parserFlags warnings ifFalse:[^ false].
21ef13183fb5 changed: #notifyWarning:doNotShowAgainAction:position:to:
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1410
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1411
    requestor isNil ifTrue:[
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1412
"/        self showErrorMessage:aMessage position:position.
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1413
        ^ false
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1414
    ].
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1415
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1416
    warnAction := [ answer := requestor warning:aMessage position:position to:endPos from:self ].
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1417
1457
e71ddaf82e50 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1418
    doNotShowAgainAction notNil ifTrue:[
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1419
        realAction := warnAction.
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1420
        warnAction := 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1421
            [
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1422
                DoNotShowCompilerWarningAgainActionQuery 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1423
                    answer:doNotShowAgainAction
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1424
                    do:realAction
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1425
            ].
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1426
    ].
2846
d7ddf430ff69 changed: #notifyWarning:doNotShowAgainAction:doNotShowAgainForThisMethodAction:position:to:
Claus Gittinger <cg@exept.de>
parents: 2833
diff changeset
  1427
    (doNotShowAgainForThisMethodAction notNil and:[ self isDoIt not ]) ifTrue:[
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1428
        real2Action := warnAction.
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1429
        warnAction := 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1430
            [
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1431
                DoNotShowCompilerWarningAgainForThisMethodActionQuery 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1432
                    answer:doNotShowAgainForThisMethodAction
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1433
                    do:real2Action
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1434
            ].
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1435
    ].
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1436
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1437
    warnAction value.
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1438
    ^ answer
2455
acdcc9b42d41 comment/format in: #notifyWarning:doNotShowAgainAction:position:to:
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  1439
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1440
    "Created: / 28-02-2012 / 08:42:01 / cg"
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1441
!
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1442
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1443
notifyWarning:aMessage doNotShowAgainAction:doNotShowAgainAction position:position to:endPos
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1444
    "notify requestor of a warning - if there is no requestor, just ignore it.
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1445
     Return the result passed back from the requestor (or false, if there is none)."
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1446
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1447
    ^ self
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1448
        notifyWarning:aMessage 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1449
        doNotShowAgainAction:doNotShowAgainAction 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1450
        doNotShowAgainForThisMethodAction:nil 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1451
        position:position to:endPos
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1452
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1453
    "Modified: / 28-02-2012 / 08:44:45 / cg"
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1454
!
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1455
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1456
notifyWarning:aMessage position:position to:endPos
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1457
    "notify requestor of an warning - if there is no requestor
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1458
     put it on the transcript.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1459
     Return the result passed back by the requestor."
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1460
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1461
    ^ self 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1462
        notifyWarning:aMessage 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1463
        doNotShowAgainAction:nil 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1464
        position:position to:endPos.
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1465
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1466
    "Modified (format): / 28-02-2012 / 08:44:13 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1467
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1468
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1469
parseError:aMessage
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1470
    "report an error"
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1471
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1472
    ^ self parseError:aMessage position:tokenPosition to:nil
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1473
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1474
    "Created: / 13.5.1998 / 16:45:13 / cg"
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1475
!
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1476
1900
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1477
parseError:aMessage line:lNr
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1478
    "report an error"
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1479
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1480
    |position|
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1481
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1482
    tokenLineNr := lNr.
1948
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1483
    position := self positionFromLineNumber:lNr.
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1484
    ^ self parseError:aMessage position:position to:nil
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1485
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1486
    "Created: / 13-05-1998 / 16:45:05 / cg"
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1487
    "Modified: / 16-11-2006 / 14:29:00 / cg"
1900
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1488
!
66c65b0abf72 error messages (line based)
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
  1489
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1490
parseError:aMessage position:position
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1491
    "report an error"
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1492
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1493
    ^ self parseError:aMessage position:position to:nil
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1494
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1495
    "Created: / 13.5.1998 / 16:45:05 / cg"
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1496
!
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1497
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1498
parseError:aMessage position:position to:endPos
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1499
    "report an error"
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1500
2047
a5d66a6b66ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  1501
    |fullMessage|
a5d66a6b66ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  1502
2961
d18fe23b336a changed:
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1503
    Smalltalk isInitialized ifFalse:[
d18fe23b336a changed:
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1504
        (self class name,' [error]: error during initialization:') errorPrint.
d18fe23b336a changed:
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1505
        aMessage errorPrintCR.
2157
27dbac5f6a95 changed #printAll
Claus Gittinger <cg@exept.de>
parents: 2155
diff changeset
  1506
        thisContext printAll.
2047
a5d66a6b66ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  1507
    ].
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1508
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1509
    "/ fullMessage := (self errorMessagePrefix) , ' ' , (aMessage ? '???').
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1510
    fullMessage := (aMessage ? 'Unspecified error').
1563
207841f4402e errorFlag setting cleanup
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
  1511
    self errorFlag:true.
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1512
    self notifyError:fullMessage position:position to:endPos.
1622
5a79277049ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  1513
    exitBlock value.
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1514
    ^ false
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1515
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1516
    "Created: / 13-05-1998 / 16:44:55 / cg"
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1517
    "Modified: / 22-08-2006 / 14:13:11 / cg"
709
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1518
!
b4351947a598 moved error methods up
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1519
1948
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1520
positionFromLineNumber:lNr
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1521
    |position|
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1522
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1523
    (requestor notNil and:[requestor isTextView]) ifTrue:[
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1524
        ^ requestor characterPositionOfLine:lNr col:1.
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1525
    ].
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1526
    ^ nil
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1527
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1528
    "Created: / 16-11-2006 / 14:28:37 / cg"
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1529
!
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1530
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1531
showErrorMessage:aMessage position:pos
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1532
    "show an errormessage on the Transcript"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1533
1976
d335a3fa358f When writing error messages to Transcript, say who generated them
Stefan Vogel <sv@exept.de>
parents: 1972
diff changeset
  1534
    (ignoreErrors or:[Smalltalk silentLoading]) ifFalse:[
d335a3fa358f When writing error messages to Transcript, say who generated them
Stefan Vogel <sv@exept.de>
parents: 1972
diff changeset
  1535
        Transcript showCR:('Scanner [<4p> line:<1p> off:<2p>]: <3p>' 
d335a3fa358f When writing error messages to Transcript, say who generated them
Stefan Vogel <sv@exept.de>
parents: 1972
diff changeset
  1536
                            expandMacrosWith:tokenLineNr with:pos with:aMessage with:source).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1537
    ]
274
8e120bd82c69 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
  1538
8e120bd82c69 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
  1539
    "Modified: 18.5.1996 / 15:44:35 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1540
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1541
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1542
syntaxError:aMessage
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1543
    "a syntax error happened - position is not known"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1544
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1545
    ^ self syntaxError:aMessage position:tokenPosition
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1546
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1547
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1548
syntaxError:aMessage position:position
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1549
    "a syntax error happened - only start position is known"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1550
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1551
    ^ self syntaxError:aMessage position:position to:nil
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1552
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1553
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1554
syntaxError:aMessage position:position to:endPos
2523
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1555
    "a syntax error happened.
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1556
     Return true for correction, false if not"
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1557
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1558
    |fullMessage ret|
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1559
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1560
    "/ fullMessage := self errorMessagePrefix , ' ' , aMessage.
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1561
    fullMessage := aMessage.
2523
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1562
    ret := self notifyError:fullMessage position:position to:endPos.
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1563
    "/ exitBlock value.
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1564
    "/ ^ false
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1565
    errorFlag := true.
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1566
    ^ ret.
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1567
4fc32fe8edc7 changed: #syntaxError:position:to:
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
  1568
    "Modified: / 30-06-2011 / 19:49:19 / cg"
87
claus
parents: 83
diff changeset
  1569
!
claus
parents: 83
diff changeset
  1570
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
  1571
warnCommonMistake:msg at:position
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1572
    "warn about a common beginners mistake"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1573
311
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1574
    self warnCommonMistake:msg position:position to:position
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1575
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1576
    "Modified: 23.5.1997 / 12:16:34 / cg"
311
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1577
!
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1578
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1579
warnCommonMistake:msg position:pos1 to:pos2
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1580
    "warn about a common beginners mistake"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1581
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
  1582
    ignoreWarnings ifFalse:[
1755
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1583
        parserFlags warnings ifTrue:[
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1584
            parserFlags warnCommonMistakes ifTrue:[
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1585
                self 
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1586
                    warning:msg
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1587
                    position:pos1 to:pos2.
1858c80ffdf3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  1588
            ]
311
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1589
        ]
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
  1590
    ]
311
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1591
1fcbd4311698 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  1592
    "Created: 18.7.1996 / 10:28:38 / cg"
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1593
    "Modified: 23.5.1997 / 12:16:39 / cg"
310
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
  1594
!
27ed956b591e beginners common error warnings
Claus Gittinger <cg@exept.de>
parents: 288
diff changeset
  1595
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1596
warnDollarAt:position
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1597
    "warn about $-character in an identifier"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1598
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1599
    ignoreWarnings ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1600
        didWarnAboutDollarInIdentifier ifFalse:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1601
            parserFlags warnDollarInIdentifier ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1602
                self 
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1603
                    warning:'$-characters in identifiers/symbols are nonportable' 
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
  1604
                    doNotShowAgainAction:[ ParserFlags warnDollarInIdentifier:false ]
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1605
                    position:position to:position.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1606
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1607
                 only warn once (per method)
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1608
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1609
                didWarnAboutDollarInIdentifier := true
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1610
            ]
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1611
        ]
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1612
    ]
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1613
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1614
    "Created: 7.9.1997 / 01:50:24 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1615
    "Modified: 7.9.1997 / 01:51:13 / cg"
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1616
!
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  1617
87
claus
parents: 83
diff changeset
  1618
warnOldStyleAssignmentAt:position
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1619
    "warn about an oldStyle assignment"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1620
87
claus
parents: 83
diff changeset
  1621
    ignoreWarnings ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1622
        didWarnAboutOldStyleAssignment ifFalse:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1623
            parserFlags warnOldStyleAssignment ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1624
                self 
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1625
                    warning:'Old style assignment - please change to use '':='''
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1626
                    doNotShowAgainAction:[ ParserFlags warnOldStyleAssignment:false ]
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1627
                    position:position to:position.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1628
                    
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1629
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1630
                 only warn once (per method)
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1631
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1632
                didWarnAboutOldStyleAssignment := true
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1633
            ]
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1634
        ]
87
claus
parents: 83
diff changeset
  1635
    ]
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1636
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1637
    "Modified: 23.5.1997 / 12:16:48 / cg"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1638
!
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1639
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1640
warnPeriodAt:position
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1641
    "warn about a period in an identifier"
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1642
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1643
    ignoreWarnings ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1644
        didWarnAboutPeriodInSymbol ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1645
            parserFlags warnAboutPeriodInSymbol ifTrue:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1646
                self 
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1647
                    warning:'Period in symbols are nonportable' 
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1648
                    doNotShowAgainAction:[ ParserFlags warnAboutPeriodInSymbol:false ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1649
                    position:position to:position.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1650
                "
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1651
                 only warn once (per method)
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1652
                "
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1653
                didWarnAboutPeriodInSymbol := true
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1654
            ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1655
        ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1656
    ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1657
!
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  1658
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1659
warnPossibleIncompatibility:msg position:pos1 to:pos2
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1660
    "warn about a possible incompatibility with other ST systems"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1661
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1662
    ignoreWarnings ifFalse:[
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  1663
        parserFlags warnPossibleIncompatibilities ifTrue:[
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1664
            self 
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1665
                warning:('Possible incompatibility.\\' , msg) withCRs
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
  1666
                doNotShowAgainAction:[ ParserFlags warnPossibleIncompatibilities:false ]
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1667
                position:pos1 to:pos2.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1668
        ]
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1669
    ]
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1670
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1671
    "Created: 23.5.1997 / 12:17:54 / cg"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1672
    "Modified: 23.5.1997 / 12:22:37 / cg"
87
claus
parents: 83
diff changeset
  1673
!
claus
parents: 83
diff changeset
  1674
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  1675
warnSTXSpecialCommentAt:position to:endPosition
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1676
    ignoreWarnings ifFalse:[
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1677
        "/ dfo
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1678
        didWarnAboutSTXSpecialComment ifFalse:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1679
            parserFlags warnSTXSpecialComment ifTrue:[
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1680
                self 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1681
                    warning:'End-of-line comments are a nonstandard feature of ST/X' 
2854
64b0decefcec changed: #warnSTXSpecialCommentAt:to:
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1682
                    doNotShowAgainAction:[ parserFlags warnSTXSpecialComment:false. ParserFlags warnSTXSpecials:false. ]
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1683
                    doNotShowAgainForThisMethodAction: [ self disableWarningsOnCurrentMethodFor: #warnSTXSpecials ]
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1684
                    position:position to:endPosition.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1685
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1686
                 only warn once
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1687
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1688
                didWarnAboutSTXSpecialComment := true
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1689
            ]
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1690
        ]
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1691
    ].
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1692
2854
64b0decefcec changed: #warnSTXSpecialCommentAt:to:
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1693
    "Modified: / 16-03-2012 / 18:37:11 / cg"
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1694
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1695
87
claus
parents: 83
diff changeset
  1696
warnUnderscoreAt:position
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1697
    "warn about an underscore in an identifier"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1698
87
claus
parents: 83
diff changeset
  1699
    ignoreWarnings ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1700
        didWarnAboutUnderscoreInIdentifier ifFalse:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1701
            parserFlags warnUnderscoreInIdentifier ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1702
                self 
1663
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
  1703
                    warning:'Underscores in identifiers/symbols are nonportable' 
804edcc95bd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1656
diff changeset
  1704
                    doNotShowAgainAction:[ ParserFlags warnUnderscoreInIdentifier:false ]
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1705
                    position:position to:position.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1706
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1707
                 only warn once (per method)
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1708
                "
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1709
                didWarnAboutUnderscoreInIdentifier := true
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1710
            ]
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1711
        ]
87
claus
parents: 83
diff changeset
  1712
    ]
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1713
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1714
    "Modified: 23.5.1997 / 12:17:06 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1715
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1716
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1717
warning:aMessage
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1718
    "a warning - position is not known"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1719
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1720
    ^ self warning:aMessage position:tokenPosition
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1721
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1722
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1723
warning:aMessage doNotShowAgainAction:doNotShowAgainAction doNotShowAgainForThisMethodAction:doNotShowAgainForThisMethodAction position:position to:endPos
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1724
    "a warning"
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1725
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1726
    ^ self 
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1727
        notifyWarning:((self warningMessagePrefix) , ' ' , aMessage)
1457
e71ddaf82e50 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1728
        doNotShowAgainAction:doNotShowAgainAction
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1729
        doNotShowAgainForThisMethodAction:doNotShowAgainForThisMethodAction
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1730
        position:position to:endPos
2831
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1731
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1732
    "Created: / 28-02-2012 / 08:38:16 / cg"
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1733
!
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1734
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1735
warning:aMessage doNotShowAgainAction:doNotShowAgainAction position:position to:endPos
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1736
    "a warning"
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1737
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1738
    ^ self 
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1739
        warning:aMessage
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1740
        doNotShowAgainAction:doNotShowAgainAction
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1741
        doNotShowAgainForThisMethodAction:nil
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1742
        position:position to:endPos
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1743
48764c0239d6 per method warning control
Claus Gittinger <cg@exept.de>
parents: 2786
diff changeset
  1744
    "Modified: / 28-02-2012 / 08:43:00 / cg"
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1745
!
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1746
1948
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1747
warning:aMessage line:lNr
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1748
    "a warning - only start position is known"
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1749
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1750
    |position|
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1751
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1752
    position := self positionFromLineNumber:lNr.
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1753
    ^ self warning:aMessage position:position to:nil
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1754
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1755
    "Created: / 16-11-2006 / 14:29:30 / cg"
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1756
!
40baccddc2f6 warn code
Claus Gittinger <cg@exept.de>
parents: 1930
diff changeset
  1757
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1758
warning:aMessage position:position
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1759
    "a warning - only start position is known"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1760
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1761
    ^ self warning:aMessage position:position to:nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1762
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1763
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1764
warning:aMessage position:position to:endPos
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1765
    "a warning"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1766
1454
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1767
    ^ self 
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1768
        notifyWarning:((self warningMessagePrefix) , ' ' , aMessage) 
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1769
        doNotShowAgainAction:nil
d3c4be472930 support doNotSHowThisWarningDialogAgain
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  1770
        position:position to:endPos
1073
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1771
!
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1772
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1773
warningMessagePrefix
d6041f6d680c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1029
diff changeset
  1774
    ^ 'Warning:'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1775
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1776
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1777
!Scanner methodsFor:'general scanning'!
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1778
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1779
scanNumberFrom:aStringOrStream
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1780
    "scan aSourceString for the next number in smalltalk syntax
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1781
     Return the number or nil."
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1782
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1783
    |oldPos|
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1784
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1785
    self initializeFor:aStringOrStream.
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  1786
    oldPos := source position.
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1787
    self nextToken.
1349
ec1b7cc48572 allow any number in #scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 1347
diff changeset
  1788
    tokenValue isNumber ifTrue:[
996
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1789
        "/ must keep stream positioned correctly
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1790
        "/ (undo lookahead)
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1791
        peekChar notNil ifTrue:[
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1792
            peekChar2 notNil ifTrue:[
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1793
                source skip:-1
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1794
            ].
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1795
            source skip:-1
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1796
        ].
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1797
        ^ tokenValue
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1798
    ].
996
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1799
    "/ backup in case of error; return nil
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  1800
    source position:oldPos.
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1801
    ^ nil.
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1802
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1803
    "Created: / 18.6.1998 / 23:05:22 / cg"
996
53dbf13d1aa0 keep stream positioned correctly after scanNumberFrom:
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  1804
    "Modified: / 19.11.1999 / 18:25:52 / cg"
737
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1805
!
4062aa740959 support for readSmalltalkSyntax
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
  1806
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1807
scanPositionsFor:aTokenString inString:aSourceString
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1808
    "scan aSourceString for occurrances of aTokenString.
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1809
     Return a collection of start positions.
1577
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1810
     Added for VW compatibility (to support simple syntax-highlight)."
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1811
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1812
    |searchType searchName searchValue positions t|
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1813
1577
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1814
    aTokenString notNil ifTrue:[
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1815
        "
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1816
         first, look what kind of token we have to search for
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1817
        "
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1818
        self initializeFor:(ReadStream on:aTokenString).
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1819
        self nextToken.
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1820
        searchType := tokenType.
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1821
        searchName := tokenName.
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1822
        searchValue := tokenValue.
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1823
    ].
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1824
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1825
    "
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1826
     start the real work ...
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1827
    "
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1828
    self initializeFor:(ReadStream on:aSourceString).
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1829
    positions := OrderedCollection new.
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1830
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1831
    [(t := self nextToken) ~~ #EOF] whileTrue:[
1577
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1832
        searchType == t ifTrue:[
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1833
            (searchName isNil or:[tokenName = searchName]) ifTrue:[
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1834
                (searchValue isNil or:[tokenValue = searchValue]) ifTrue:[
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1835
                    positions add:tokenPosition.
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1836
                ]
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1837
            ]
31648db46af5 scan support
Claus Gittinger <cg@exept.de>
parents: 1572
diff changeset
  1838
        ]
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1839
    ].
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1840
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1841
    ^ positions
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1842
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1843
    "
30
26e2f849916a keep tokenRadix; accept E in floats
claus
parents: 20
diff changeset
  1844
     Scanner new scanPositionsFor:'hello' inString:'foo bar hello baz hello' 
26e2f849916a keep tokenRadix; accept E in floats
claus
parents: 20
diff changeset
  1845
     Scanner new scanPositionsFor:'3.14' inString:'foo 3.145 bar hello 3.14 baz hello 3.14' 
26e2f849916a keep tokenRadix; accept E in floats
claus
parents: 20
diff changeset
  1846
     Scanner new scanPositionsFor:'16' inString:'foo 16 bar hello 16r10 baz hello 2r10000' 
17
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1847
    "
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1848
! !
f06d70d785dc *** empty log message ***
claus
parents: 15
diff changeset
  1849
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1850
!Scanner methodsFor:'initialization'!
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1851
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1852
initialize
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1853
    "initialize the scanner"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1854
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1855
    errorFlag := false.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1856
    tokenPosition := 1.
610
0aa21dd74161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  1857
    tokenLineNr := lineNr := 1.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1858
    currentComments := nil.
2740
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  1859
    "/ allow for these to be already set (kludge)
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  1860
    saveComments isNil ifTrue:[ saveComments := false ].
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  1861
    parserFlags isNil ifTrue:[ parserFlags := ParserFlags new ].
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1862
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1863
    ignoreErrors := false.
1930
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1864
    ignoreWarnings := parserFlags warnings not.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1865
    didWarnAboutSTXSpecialComment := false.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1866
    didWarnAboutUnderscoreInIdentifier := false.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1867
    didWarnAboutDollarInIdentifier := false.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1868
    didWarnAboutOldStyleAssignment := false.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1869
900
2914b42fa972 comment
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
  1870
    "/ not used here, but eases subclassing for other languages.
2740
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  1871
    scanColonAsKeyword isNil ifTrue:[ scanColonAsKeyword := true ]. 
1930
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1872
    self initializeActionTable.
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1873
2740
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  1874
    "Modified (comment): / 05-10-2011 / 09:22:46 / cg"
1930
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1875
!
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1876
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1877
initializeActionTable
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
  1878
    actionArray := self class actionArray.
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  1879
    unicodeActions := self class unicodeActions.
2140
f9b4ef3e9368 type- and actionArray are now class-instance variables
Claus Gittinger <cg@exept.de>
parents: 2139
diff changeset
  1880
    typeArray := self class typeArray.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1881
1930
ff11ddb6de58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
  1882
    "Created: / 18-10-2006 / 23:10:55 / cg"
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  1883
    "Modified: / 25-03-2011 / 13:57:50 / cg"
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1884
!
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1885
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1886
initializeFlagsFrom:aScanner
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1887
    "initialize flags from another scanner"
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1888
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1889
    ignoreErrors := aScanner ignoreErrors.
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1890
    ignoreWarnings := aScanner ignoreWarnings.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1891
    parserFlags := aScanner parserFlags copy.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1892
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  1893
    "/ not used here, but eases subclassing for other languages.
1362
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1894
    scanColonAsKeyword := aScanner scanColonAsKeyword. 
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1895
!
b51578f0182e separated instance creation from scanning
penk
parents: 1356
diff changeset
  1896
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1897
initializeFor:aStringOrStream
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1898
    "initialize the new scanner & prepare for reading from aStringOrStream"
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1899
2741
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1900
    actionArray isNil ifTrue:[
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1901
        "/ if not already initialized...
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1902
        self initialize.
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1903
    ].
847
7decf59c15ba added #source:
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  1904
    self source:aStringOrStream.
2741
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1905
cdf6aa380b3e changed: #initializeFor:
Claus Gittinger <cg@exept.de>
parents: 2740
diff changeset
  1906
    "Modified: / 05-10-2011 / 09:24:00 / cg"
847
7decf59c15ba added #source:
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  1907
!
7decf59c15ba added #source:
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  1908
1962
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1909
requestor:anObject
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1910
    "set the requestor to be notified"
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1911
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1912
    requestor := anObject
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1913
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1914
    "Created: / 07-12-2006 / 18:13:13 / cg"
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1915
!
ed2bc05cbf65 + requestor:
Claus Gittinger <cg@exept.de>
parents: 1960
diff changeset
  1916
1242
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
  1917
setSource:newSource
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
  1918
    source := newSource
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
  1919
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
  1920
!
52bc5f333553 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1241
diff changeset
  1921
847
7decf59c15ba added #source:
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  1922
source:aStringOrStream
2766
638d8e48b77d changed: #source:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
  1923
    "prepare for reading from aStringOrStream;
638d8e48b77d changed: #source:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
  1924
     notice: if token is nonNil, it is preserved. This allows for scanning
638d8e48b77d changed: #source:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
  1925
     across streams."
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1926
854
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
  1927
    errorFlag := false.
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
  1928
    tokenPosition := 1.
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
  1929
    tokenLineNr := lineNr := 1.
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
  1930
    currentComments := nil.
4ccfe0a30d08 initialize scanner on #new
Stefan Vogel <sv@exept.de>
parents: 847
diff changeset
  1931
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1932
    aStringOrStream isStream ifFalse:[
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1933
        source := ReadStream on:aStringOrStream
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1934
    ] ifTrue:[
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1935
        source := aStringOrStream.
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1936
    ].
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1937
2762
66c6028c085d changed: #source:
Claus Gittinger <cg@exept.de>
parents: 2742
diff changeset
  1938
    "Modified: / 26-05-1999 / 12:02:16 / stefan"
2766
638d8e48b77d changed: #source:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
  1939
    "Modified: / 06-12-2011 / 00:45:50 / cg"
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1940
! !
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  1941
1237
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1942
!Scanner methodsFor:'parser interface'!
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1943
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1944
errorFlag:flagArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1945
    errorFlag := flagArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1946
!
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1947
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1948
token
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1949
    ^ token
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1950
!
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1951
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1952
tokenLineNr:lineNumberArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1953
    tokenLineNr := lineNumberArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1954
!
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1955
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1956
tokenPosition:positionArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1957
    tokenPosition := positionArg
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1958
! !
4c8cd98c5778 more refactorings for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1236
diff changeset
  1959
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1960
!Scanner methodsFor:'private'!
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  1961
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1962
backupPosition
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1963
    "if reading from a stream, at the end we might have read
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1964
     one token too many"
20
f8dd8ba75205 *** empty log message ***
claus
parents: 17
diff changeset
  1965
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1966
    (tokenType == #EOF) ifFalse:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1967
        source position1Based:tokenPosition
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1968
    ]
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1969
!
15
992c3d87edbf *** empty log message ***
claus
parents: 10
diff changeset
  1970
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1971
beginComment
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1972
    ^ self
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1973
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  1974
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1975
checkForKeyword:string
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1976
    "check if string is a keyword (as opposed to an identifier).
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1977
     That is, its one of 'self', 'super', 'nil', 'true', 'false',
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1978
     or 'thisContext'.
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1979
     'here' is handled elsewhere (since it must be treated as an
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1980
     identifier, if declared locally."
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1981
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1982
    |firstChar|
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1983
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1984
    firstChar := string at:1.
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1985
    (firstChar == $s) ifTrue:[
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1986
        (string = 'self')  ifTrue:[tokenType := #Self. ^true].
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1987
        (string = 'super') ifTrue:[tokenType := #Super. ^true]
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1988
    ].
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1989
    (firstChar == $n) ifTrue:[
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  1990
        (string = 'nil') ifTrue:[tokenType := #Nil. tokenValue := nil. ^true]
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1991
    ].
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1992
    (firstChar == $t) ifTrue:[
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  1993
        (string = 'true') ifTrue:[tokenType := #True. tokenValue := true. ^true].
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1994
        (string = 'thisContext') ifTrue:[tokenType := #ThisContext. ^true]
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1995
    ].
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1996
    (firstChar == $f) ifTrue:[
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  1997
        (string = 'false') ifTrue:[tokenType := #False. tokenValue := false. ^true]
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1998
    ].
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1999
    ^ false
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2000
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2001
    "Modified: / 13.5.1998 / 14:59:55 / cg"
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2002
!
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2003
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2004
collectedSource
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2005
    ^ collectedSource
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2006
!
74
fee7c3091f71 *** empty log message ***
claus
parents: 71
diff changeset
  2007
1236
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2008
eatPeekChar
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2009
    peekChar isNil ifTrue:[
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2010
        source next.
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2011
    ] ifFalse:[
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2012
        peekChar := nil.
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2013
    ].
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2014
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2015
    "Created: / 24.10.1998 / 17:25:39 / cg"
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2016
!
f613f961fd99 eatPeekChar moved
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
  2017
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2018
endComment:comment
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2019
    saveComments ifTrue:[
1584
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
  2020
        currentComments isNil ifTrue:[
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
  2021
            currentComments := OrderedCollection with:comment
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
  2022
        ] ifFalse:[
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
  2023
            currentComments add:comment
0df14b652d03 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1583
diff changeset
  2024
        ]
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  2025
    ].
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  2026
!
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  2027
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2028
endComment:commentString type:commentType
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2029
    |comment|
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2030
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2031
    saveComments ifTrue:[
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  2032
        comment := Comment new commentString:commentString commentType:commentType.
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2033
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2034
        currentComments isNil ifTrue:[
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2035
            currentComments := OrderedCollection with:comment
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2036
        ] ifFalse:[
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2037
            currentComments add:comment
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2038
        ]
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2039
    ].
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2040
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2041
    "Created: / 17.2.1998 / 14:48:49 / cg"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2042
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2043
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2044
eolIsWhiteSpace
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2045
    ^ true
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2046
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2047
    "Created: / 14-03-2011 / 14:11:46 / cg"
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2048
!
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  2049
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2050
escapeCharacterFor:aCharacter
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2051
    "only if AllowExtendedSTXSyntax is true 
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2052
     For now: do not use, since stc does not support it.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2053
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2054
     much like character escapes in C-literals;
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2055
     expands:
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2056
        \n      newLine
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2057
        \r      return
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2058
        \t      tab
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2059
        \b      backspace
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2060
        \f      formfeed
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2061
        \g      bell
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2062
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2063
        \\      backSlash
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2064
        \ ...\  (backslash-separator) ignored up to next backslash
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2065
        \xNN    hexCharacter
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2066
        \uNNNN  hex UnicodeCharacter
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2067
    "
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2068
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2069
    |ascii nextChar fetchNext|
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2070
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2071
    aCharacter == $n ifTrue:[^ Character nl].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2072
    aCharacter == $r ifTrue:[^ Character return].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2073
    aCharacter == $t ifTrue:[^ Character tab].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2074
    aCharacter == $b ifTrue:[^ Character backspace].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2075
    aCharacter == $f ifTrue:[^ Character ff].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2076
    aCharacter == $g ifTrue:[^ Character bell].
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2077
    aCharacter == $\ ifTrue:[^ aCharacter].
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2078
    aCharacter isSeparator ifTrue:[
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2079
        nextChar := source next.
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2080
        [nextChar notNil and:[nextChar ~~ $\]] whileTrue:[
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2081
            (nextChar == Character cr) ifTrue:[
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2082
                lineNr := lineNr + 1
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2083
            ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2084
            nextChar := source next.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2085
        ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2086
        ^ nil
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2087
    ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2088
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2089
    (aCharacter == $x or:[ aCharacter == $u ]) ifTrue:[
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2090
        fetchNext := 
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2091
            [
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2092
                nextChar := source next.
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2093
                (nextChar notNil and:[nextChar isDigitRadix:16]) ifFalse:[
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2094
                    self syntaxError:'hex digit expected in string literal'
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2095
                         position:(source position1Based-1) to:(source position1Based-1).
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2096
                ].
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2097
                nextChar digitValue
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2098
            ].
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2099
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2100
        ascii := fetchNext value.
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2101
        ascii := (ascii bitShift:4) bitOr:(fetchNext value).
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2102
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2103
        (aCharacter == $u ) ifTrue:[
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2104
            ascii := (ascii bitShift:4) bitOr:(fetchNext value).
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2105
            ascii := (ascii bitShift:4) bitOr:(fetchNext value).
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2106
        ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2107
        ^ Character value:ascii.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2108
    ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2109
    ^ aCharacter
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2110
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2111
    "
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2112
     ParserFlags allowExtendedSTXSyntax:true
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2113
    "
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2114
    "
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2115
     'hello\nworld' 
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2116
     'hello\x0Dworld'  
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2117
     'hello\x08world'   
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2118
     'hello\
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2119
    \world'   
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2120
    "                      
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2121
    "
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2122
     ParserFlags allowExtendedSTXSyntax:false
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2123
    "
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2124
!
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2125
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2126
ignoreErrors
1365
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2127
    "return the flag which controls notification of errors"
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2128
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2129
    ^ ignoreErrors
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2130
!
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2131
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2132
ignoreErrors:aBoolean
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2133
    "enable/disable notification of errors"
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2134
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2135
    ignoreErrors := aBoolean
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2136
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2137
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2138
ignoreWarnings
1365
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2139
    "return the flag which controls notification of warnings"
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2140
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2141
    ^ ignoreWarnings
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2142
!
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2143
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2144
ignoreWarnings:aBoolean
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2145
    "enable/disable notification of warnings"
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2146
19b74038d133 ignoreErrors / ignoreWarnings are not getters.
penk
parents: 1362
diff changeset
  2147
    ignoreWarnings := aBoolean
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2148
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2149
714
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2150
isCommentCharacter:ch
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2151
    "return true, if ch is the comment-start character.
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2152
     Brought into a separate method to allow for easier subclassing"
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2153
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2154
    ^ ch == $"
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2155
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2156
    "Created: / 14.5.1998 / 20:51:42 / cg"
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2157
    "Modified: / 14.5.1998 / 20:53:01 / cg"
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2158
!
09f35b01bbcf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 709
diff changeset
  2159
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  2160
isDoIt
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  2161
    ^ false
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  2162
!
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  2163
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2164
isSpecialOrExtendedSpecialCharacter:ch
2027
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2165
    |code charType|
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2166
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2167
    code := ch codePoint.
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2168
    code > typeArray size ifTrue:[^ false].
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2169
69396e6c797c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2170
    charType := typeArray at:code.
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2171
    ^ (charType == #special) 
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2172
       or:[ (charType == #extendedSpecial) and:[parserFlags allowExtendedBinarySelectors] ] 
2290
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2173
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2174
    "
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2175
     self basicNew isSpecialOrExtendedSpecialCharacter:$-
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2176
    "
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2177
!
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2178
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2179
notifying:anObject
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2180
    "set the requestor to be notified"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2181
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2182
    requestor := anObject
426
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2183
!
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2184
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2185
setNameSpace:aNameSpace
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2186
    "/ ignored here
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2187
871231a532fc remember nameSpace as scanned from directive
Claus Gittinger <cg@exept.de>
parents: 417
diff changeset
  2188
    "Created: 8.11.1996 / 13:33:10 / cg"
1247
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2189
!
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2190
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2191
setPackage:aNameSpace
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2192
    "/ ignored here
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2193
ce0d19140248 care for package directive (remember)
Claus Gittinger <cg@exept.de>
parents: 1242
diff changeset
  2194
    "Created: 8.11.1996 / 13:33:10 / cg"
1572
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  2195
!
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  2196
9cd64860e593 +literal nameSpace symbols
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  2197
setSyntax:aSyntax
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2198
! !
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2199
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2200
!Scanner methodsFor:'reading next token'!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2201
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2202
nextAssignmentArrow
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2203
    "return a left-arrow"
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2204
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2205
    ^ self nextToken:$_
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2206
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2207
    "Created: / 25-03-2011 / 13:58:50 / cg"
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2208
!
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  2209
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2210
nextCharacter
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2211
    "a $ has been read - return a character token"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2212
1240
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2213
    |nextChar t|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2214
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2215
    source next.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2216
    nextChar := source next.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2217
    nextChar notNil ifTrue:[
1240
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2218
        t := nextChar.
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2219
        tokenType := #Character.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2220
    ] ifFalse:[
1240
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2221
        t := nil.
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2222
        tokenType := #EOF
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2223
    ].
1240
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  2224
    tokenValue := token := t.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2225
    ^ tokenType
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2226
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2227
    "Modified: / 13.5.1998 / 15:09:50 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2228
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2229
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2230
nextColonOrAssign
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2231
    "colon has been read - look for = to make it an assign"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2232
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2233
    |charType thirdChar|
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2234
120
claus
parents: 103
diff changeset
  2235
    "/ special kludge for identifier:= (without spaces inbetween)
claus
parents: 103
diff changeset
  2236
    "/ here we needed two characters lookahead after the identifier ...
claus
parents: 103
diff changeset
  2237
claus
parents: 103
diff changeset
  2238
    peekChar == $= ifTrue:[
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2239
        source next.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2240
        peekChar := nil.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2241
        tokenType := token := #':='.
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2242
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2243
        thirdChar := source peek.
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2244
        thirdChar notNil ifTrue:[
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2245
            (self isSpecialOrExtendedSpecialCharacter:thirdChar) ifTrue:[
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2246
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2247
            ]
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2248
        ].
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2249
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2250
        ^ tokenType
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2251
    ].
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2252
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2253
    "/ special kludge for nameSpace:: (without spaces inbetween)
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2254
    "/ here we needed two characters lookahead after the identifier ...
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2255
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2256
    peekChar == $: ifTrue:[
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2257
        source next.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2258
        peekChar := nil.
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2259
        tokenType := token := #'::'.
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2260
        ^ tokenType
120
claus
parents: 103
diff changeset
  2261
    ].
claus
parents: 103
diff changeset
  2262
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2263
    (source nextPeek == $=) ifTrue:[
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2264
        source next.
1004
708e1ca35c3b dont unify := and _ tokens (otherwise, highlighter would not know
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
  2265
        tokenType := token := #':='
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2266
    ] ifFalse:[
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2267
        tokenType := token := $:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2268
    ].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2269
    ^ tokenType
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2270
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2271
    "Modified: / 13.5.1998 / 15:10:04 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2272
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2273
1298
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2274
nextExcla
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2275
    "a !! has been read - return either
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2276
        the !! binarySelector, 
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2277
        ExclaLeftParen     (for '!!('),
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2278
        ExclaLeftBrack     (for '!!['), 
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2279
        ExclaLeftBrace     (for '!!{')
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2280
    "
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2281
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2282
    |nextChar|
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2283
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2284
    nextChar := source nextPeek.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2285
    parserFlags allowExtendedSTXSyntax == true ifTrue:[
1298
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2286
        (nextChar == $( ) ifTrue:[
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2287
            source next.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2288
            token := '!!('.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2289
            tokenType := #ExclaLeftParen.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2290
            ^ tokenType
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2291
        ].
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2292
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2293
        (nextChar == $[ ) ifTrue:[
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2294
            source next.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2295
            token := '!!['.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2296
            tokenType := #ExclaLeftBrack.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2297
            ^ tokenType
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2298
        ].
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2299
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2300
        (nextChar == ${ ) ifTrue:[
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2301
            source next.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2302
            token := '!!{'.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2303
            tokenType := #ExclaLeftBrace.
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2304
            ^ tokenType
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2305
        ].
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2306
    ].
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2307
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2308
    "this allows excla to be used as binop -
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2309
     I dont know, if this is correct ..."
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2310
1307
a91664d148ad also allow multi-character binary selectors starting with excla
Claus Gittinger <cg@exept.de>
parents: 1303
diff changeset
  2311
"/    tokenName := token := '!!'.
a91664d148ad also allow multi-character binary selectors starting with excla
Claus Gittinger <cg@exept.de>
parents: 1303
diff changeset
  2312
"/    tokenType := #BinaryOperator.
a91664d148ad also allow multi-character binary selectors starting with excla
Claus Gittinger <cg@exept.de>
parents: 1303
diff changeset
  2313
"/    ^ tokenType
a91664d148ad also allow multi-character binary selectors starting with excla
Claus Gittinger <cg@exept.de>
parents: 1303
diff changeset
  2314
a91664d148ad also allow multi-character binary selectors starting with excla
Claus Gittinger <cg@exept.de>
parents: 1303
diff changeset
  2315
    ^ self nextSpecialWith:$!!.
1298
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2316
!
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2317
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2318
nextExtendedSpecial:ch
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2319
    parserFlags allowExtendedBinarySelectors ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2320
        ^ self nextSpecial
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2321
    ].
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2322
    ^ self invalidCharacter:source peek.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2323
!
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2324
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2325
nextHash
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2326
    "a # has been read - return either
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2327
        a symbol, 
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2328
        HashLeftParen     (for '#('),
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2329
        HashLeftBrack     (for '#['), 
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2330
        HashLeftBrace     (for '#{'  and AllowQualifiedNames)
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2331
        HashHashLeftParen (for '##(' and AllowDolphinExtensions)
1292
380fa6f65268 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  2332
        HashHashLeftBrack (for '##[' )
380fa6f65268 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  2333
        HashHash          (for '##' )
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2334
    "
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2335
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2336
    |nextChar string allowUnderscoreInIdentifier|
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2337
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2338
    allowUnderscoreInIdentifier := parserFlags allowUnderscoreInIdentifier.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2339
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2340
    nextChar := source nextPeek.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2341
    nextChar notNil ifTrue:[
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2342
        (nextChar == $( ) ifTrue:[
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2343
            source next.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2344
            token := '#('.
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2345
            tokenType := #HashLeftParen.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2346
            ^ tokenType
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2347
        ].
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2348
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2349
        (nextChar == $[ ) ifTrue:[
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2350
            "ST-80 & ST/X support Constant ByteArrays as #[...]"
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2351
            source next.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2352
            token := '#['.
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2353
            tokenType := #HashLeftBrack.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2354
            ^ tokenType
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2355
        ].
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2356
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2357
        (nextChar == ${ ) ifTrue:[
1290
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2358
            " #{ ... } is one of:
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2359
                #{ Foo.Bar.Baz }            VW3 and later qualified name
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2360
                #{ xx-xx-xx-xx-...-xx }     StAgents UUID
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2361
                #{ URL }                    url object qualifier
1074
5539425b66f2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1073
diff changeset
  2362
            "
1290
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2363
            source next.
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2364
            token := '#{'.
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2365
            tokenType := #HashLeftBrace.
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2366
            ^ tokenType
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2367
        ].
ec07b4b3740e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1288
diff changeset
  2368
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2369
        (nextChar == $' ) ifTrue:[
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2370
            "ST-80 and ST/X support arbitrary symbols as #'...'"
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2371
            self nextString:nextChar.
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2372
            self markSymbolFrom:tokenPosition to:(source position1Based-1).
1385
7cdbe857e075 handle missing closing quote in #'...'
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
  2373
            tokenType == #EOF ifFalse:[
1488
a6b8a7a14f40 error when a 2-byte symbol is encountered
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
  2374
                tokenValue bitsPerCharacter > 8 ifTrue:[
a6b8a7a14f40 error when a 2-byte symbol is encountered
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
  2375
                    self syntaxError:'symbols which require 2-byte characters are not (yet) allowed'
a6b8a7a14f40 error when a 2-byte symbol is encountered
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
  2376
                            position:tokenPosition to:(source position1Based - 1).
a6b8a7a14f40 error when a 2-byte symbol is encountered
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
  2377
                ].
1385
7cdbe857e075 handle missing closing quote in #'...'
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
  2378
                tokenValue := token := tokenValue asSymbol.
7cdbe857e075 handle missing closing quote in #'...'
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
  2379
                tokenType := #Symbol.
7cdbe857e075 handle missing closing quote in #'...'
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
  2380
            ].
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2381
            ^ tokenType
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2382
        ].
922
77c58cc5bebc support for vw3 qualifiedNames
Claus Gittinger <cg@exept.de>
parents: 921
diff changeset
  2383
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2384
        (nextChar == $#) ifTrue:[
1294
31c8cc483db9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
  2385
            nextChar := source nextPeek.
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2386
            nextChar == $( ifTrue:[
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2387
                parserFlags allowDolphinExtensions == true ifTrue:[
2712
eddb351cf9c2 comment/format in: #nextHash
Claus Gittinger <cg@exept.de>
parents: 2678
diff changeset
  2388
                    "dolphin does computed literals as ##( ... )"
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2389
                    source next.    
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2390
                    token := '##('.
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2391
                    tokenType := #HashHashLeftParen.
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2392
                    ^ tokenType
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2393
                ].
1293
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2394
            ].
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2395
1293
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2396
            nextChar == $[ ifTrue:[
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2397
                source next.    
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2398
                token := '##['.
1293
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2399
                tokenType := #HashHashLeftBrack.
1291
917f975e3e7e oops - HashLeftAngle was wrong.
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  2400
                ^ tokenType
917f975e3e7e oops - HashLeftAngle was wrong.
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  2401
            ].
1294
31c8cc483db9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1293
diff changeset
  2402
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2403
            parserFlags allowVisualAgeESSymbolLiterals == true ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2404
                (self nextSymbolAfterHash) notNil ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2405
                    tokenType := #ESSymbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2406
                    ^ #ESSymbol
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2407
                ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2408
                (nextChar == $') ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2409
                    source next.    
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2410
                    self nextString:nextChar.
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2411
                    tokenType := #ESSymbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2412
                    ^ #ESSymbol
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2413
                ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2414
            ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2415
1293
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2416
            token := '##'.
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2417
            tokenType := #HashHash.
c33753e28dbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
  2418
            ^ tokenType
1226
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2419
        ].
c0c9fcf964fb dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 1202
diff changeset
  2420
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2421
        (self nextSymbolAfterHash) notNil ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2422
            ^ #Symbol
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2423
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2424
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2425
        (self isSpecialOrExtendedSpecialCharacter:nextChar) ifTrue:[
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2426
            string := source next asString.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2427
            nextChar := source peek.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2428
            nextChar notNil ifTrue:[
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2429
                (self isSpecialOrExtendedSpecialCharacter:nextChar) ifTrue:[
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2430
                    source next.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2431
                    string := string copyWith:nextChar
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2432
                ]
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2433
            ].
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2434
            self markSymbolFrom:tokenPosition to:(source position1Based-1).
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2435
            tokenValue := token := string asSymbol.
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2436
            tokenType := #Symbol.
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2437
            ^ tokenType
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2438
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2439
    ].
1298
878c759441d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
  2440
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2441
    "this allows hash to be used as binop -
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2442
     I dont know, if this is correct ..."
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2443
    tokenName := token := '#'.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2444
    tokenType := #BinaryOperator.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2445
    ^ tokenType
500
d0679fcc520e handle #foo_:_:_: symbols
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  2446
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2447
    "Modified: / 01-08-2006 / 14:57:19 / cg"
2712
eddb351cf9c2 comment/format in: #nextHash
Claus Gittinger <cg@exept.de>
parents: 2678
diff changeset
  2448
    "Modified (format): / 30-09-2011 / 12:23:04 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2449
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2450
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2451
nextId
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2452
    "no longer used here - remains for backwardCompatibility for
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2453
     subclass users ... (sigh)"
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2454
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2455
    |nextChar string oldString 
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2456
     index "{ Class: SmallInteger }"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2457
     max   "{ Class: SmallInteger }" |
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2458
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2459
    nextChar := source peekOrNil.
1470
62844fc53a87 String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 1458
diff changeset
  2460
    string := String uninitializedNew:20.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2461
    index := 0.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2462
    max := 10.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2463
    [true] whileTrue:[
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2464
        (nextChar notNil and:[nextChar isLetterOrDigit]) ifFalse:[
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2465
            ^ string copyTo:index
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2466
        ].
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2467
        (index == max) ifTrue:[
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2468
            oldString := string.
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2469
            string := String basicNew:(max * 2).
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2470
            string replaceFrom:1 to:max with:oldString.
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2471
            max := max * 2
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2472
        ].
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2473
        index := index + 1.
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2474
        string at:index put:nextChar.
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2475
        nextChar := source nextPeek
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2476
    ]
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2477
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2478
    "Modified: / 5.3.1998 / 02:53:57 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2479
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2480
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2481
nextIdentifier
1510
875c90576897 Fix duplicate assignment to ActionArray for sh
Stefan Vogel <sv@exept.de>
parents: 1509
diff changeset
  2482
    "an alpha character (or underscore if AllowUnderscore) has been read.
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2483
     Return the next identifier."
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2484
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2485
    |nextChar string ok pos ch2 allowUnderscoreInIdentifier|
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2486
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2487
    allowUnderscoreInIdentifier := parserFlags allowUnderscoreInIdentifier.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2488
87
claus
parents: 83
diff changeset
  2489
    hereChar == $_ ifTrue:[
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2490
        "/
708
11837544357d made scanner tables instVars - for easier subclassability
Claus Gittinger <cg@exept.de>
parents: 707
diff changeset
  2491
        "/ no need to check for allowUnderscoreInIdentifier here;
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2492
        "/ could not arrive here if it was off
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2493
        "/
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2494
        nextChar := source nextPeek.
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2495
        parserFlags allowOldStyleAssignment ifTrue:[
1954
3c20721e963c care for end-of-text when parsing a single underline identifier.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2496
            (nextChar notNil and:[ nextChar isLetterOrDigit or:[nextChar == $_]]) ifFalse:[
1261
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2497
                "oops: a single underscore is an old-style assignement"
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2498
                nextChar ~~ $: ifTrue:[
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2499
                    self warnOldStyleAssignmentAt:tokenPosition.
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2500
                    tokenType := token := $_.
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2501
                    ^ tokenType
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2502
                ]
3de89ad9de69 allow oldStyleAssignment setting added
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2503
            ].
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2504
        ].
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2505
        string := '_'.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2506
        self warnUnderscoreAt:tokenPosition.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2507
        [nextChar == $_] whileTrue:[
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2508
            string := string copyWith:$_.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2509
            nextChar := source nextPeek.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2510
        ].
1954
3c20721e963c care for end-of-text when parsing a single underline identifier.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2511
        (nextChar notNil and:[nextChar isLetterOrDigit]) ifTrue:[
467
feaacb47b0b5 allow degenerated keyword '_:'
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
  2512
            string := string , source nextAlphaNumericWord.
feaacb47b0b5 allow degenerated keyword '_:'
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
  2513
        ]
87
claus
parents: 83
diff changeset
  2514
    ] ifFalse:[
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2515
        string := source nextAlphaNumericWord "self nextId".
87
claus
parents: 83
diff changeset
  2516
    ].
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2517
    nextChar := source peekOrNil.
87
claus
parents: 83
diff changeset
  2518
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2519
    (((nextChar == $_) and:[allowUnderscoreInIdentifier]) 
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2520
    or:[((nextChar == $$ ) and:[parserFlags allowDollarInIdentifier])
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2521
    or:[(nextChar notNil and:[nextChar isNationalLetter]) and:[parserFlags allowNationalCharactersInIdentifier]]]) ifTrue:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2522
        pos := source position1Based.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2523
        nextChar == $_ ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2524
            self warnUnderscoreAt:pos.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2525
        ] ifFalse:[
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2526
            nextChar == $$ ifTrue:[
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2527
                self warnDollarAt:pos.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2528
            ] ifFalse:[
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2529
                "/ self warnNationalCharacterAt:pos.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2530
            ]
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2531
        ].
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2532
        ok := true.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2533
        [ok] whileTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2534
            string := string copyWith:nextChar.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2535
            nextChar := source nextPeek.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2536
            nextChar isNil ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2537
                ok := false
608
faa97ce2db56 allow dollars in identifiers
Claus Gittinger <cg@exept.de>
parents: 603
diff changeset
  2538
            ] ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2539
                (nextChar isLetterOrDigit) ifTrue:[
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2540
                    string := string , source nextAlphaNumericWord.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2541
                    nextChar := source peekOrNil.
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2542
                ].
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2543
                ok := ((nextChar == $_) and:[allowUnderscoreInIdentifier]) 
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2544
                      or:[((nextChar == $$ ) and:[parserFlags allowDollarInIdentifier])
1707
28a94a1701c2 more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1705
diff changeset
  2545
                      or:[(nextChar notNil and:[nextChar isNationalLetter]) and:[parserFlags allowNationalCharactersInIdentifier]]].
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2546
            ]
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2547
        ].
60
0db697f03def *** empty log message ***
claus
parents: 53
diff changeset
  2548
    ].
0db697f03def *** empty log message ***
claus
parents: 53
diff changeset
  2549
785
14d0ec37a754 added hook for subclasses which do not want to scan
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  2550
    (nextChar == $: and:[scanColonAsKeyword]) ifTrue:[
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2551
        source next.
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2552
        ch2 := source peekOrNil.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2553
        "/ colon follows - care for '::' (nameSpace separator) or ':=' (assignment)
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2554
        (ch2 == $=) ifFalse:[
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2555
            (ch2 == $:) ifFalse:[
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2556
                tokenName := token := string copyWith:nextChar.
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2557
                tokenType := #Keyword.
1202
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2558
                inArrayLiteral == true ifTrue:[
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2559
                    (ch2 isLetter 
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2560
                    or:[ch2 == $_ and:[allowUnderscoreInIdentifier]]) ifTrue:[
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2561
                        "/ kludge: recurse to read the rest.
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2562
                        self nextIdentifier.
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2563
                        tokenName := token := (string copyWith:nextChar) , token.   
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2564
                        tokenType ~~ #Keyword ifTrue:[
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2565
                            self syntaxError:'invalid keyword symbol in array constant'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2566
                                    position:tokenPosition to:(source position1Based - 1).
1202
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2567
                        ].
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2568
                        tokenType := #Keyword.
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2569
                    ].
95abdd4272cd scanning of keyword symbols in array consts fixed
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2570
                ].
1104
0ffcaab55dbc oops - nextIdentifier must return a tokenType
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
  2571
                ^ tokenType
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2572
            ].
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2573
            peekChar := $:.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2574
            peekChar2 := $:.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2575
        ] ifTrue:[
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2576
            peekChar := $:.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2577
            peekChar2 := $=.
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2578
        ]
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2579
    ] ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2580
        (nextChar == $. and:[parserFlags allowQualifiedNames]) ifTrue:[
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2581
            "/ period follows - if next-after character is an identifier character,
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2582
            "/ make peekSym a #NameSpaceSeparator; otherwise a $.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2583
            source next.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2584
            ch2 := source peekOrNil.
1029
aeaed53633d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  2585
            (ch2 notNil
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  2586
            and:[ch2 isLetter or:[ch2 == $_ and:[allowUnderscoreInIdentifier]]]) ifTrue:[
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2587
                peekChar := #'::'.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2588
            ] ifFalse:[
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2589
                peekChar := $.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2590
            ].
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  2591
        ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2592
    ].
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2593
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2594
    nextChar == $- ifTrue:[
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2595
        pos := source position1Based.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2596
        self
1395
798231203863 warning message
Claus Gittinger <cg@exept.de>
parents: 1385
diff changeset
  2597
            warnPossibleIncompatibility:'add spaces around ''-'' for compatibility with other systems'
610
0aa21dd74161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  2598
            position:pos to:pos.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2599
    ].
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2600
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2601
    tokenName := token := string.
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2602
    (self checkForKeyword:string) ifFalse:[
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2603
        tokenType := #Identifier.
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2604
    ].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2605
    ^ tokenType
120
claus
parents: 103
diff changeset
  2606
1954
3c20721e963c care for end-of-text when parsing a single underline identifier.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2607
    "Created: / 13-09-1995 / 12:56:42 / claus"
3c20721e963c care for end-of-text when parsing a single underline identifier.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2608
    "Modified: / 24-11-2006 / 10:38:47 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2609
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2610
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2611
nextMantissa:radix
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2612
    "read the mantissa of a radix number"
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2613
1351
107757ea7184 Remove unused method variables
Stefan Vogel <sv@exept.de>
parents: 1349
diff changeset
  2614
    <resource: #obsolete>
107757ea7184 Remove unused method variables
Stefan Vogel <sv@exept.de>
parents: 1349
diff changeset
  2615
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2616
    ^ (self nextMantissaAndScaledPartWithRadix:radix) first
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2617
!
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2618
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2619
nextMantissaAndScaledPartWithRadix:radix
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2620
    "read the mantissa of a radix number.
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2621
     Since we dont know yet if this is for a Float, LongFloat or a FixedPoint,
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2622
     return info which is useful for all: an array consisting of
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2623
     the mantissa as float/longFloat, the numerator and the scale for a fixedPoint."
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2624
1972
f52b7e609f1f common code with Number-reading
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2625
    ^ Number readMantissaAndScaleFrom:source radix:radix
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2626
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2627
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2628
nextNumber
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2629
    "scan a number; handles radix prefix, mantissa and exponent.
1673
3f64c0d10a4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  2630
     Allows for e, d or q to be used as exponent limiter."
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2631
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2632
    |pos1 nextChar value integerPart sign 
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2633
     expSign tokenRadix mantissaAndScaledPart d type exp scale|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2634
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2635
    tokenRadix := 10.
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2636
    sign := 1.
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2637
    type := #Integer.
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2638
    pos1 := source position1Based.
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2639
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2640
    value := Integer readFrom:source radix:tokenRadix.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2641
    nextChar := source peekOrNil.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2642
    (nextChar == $r) ifTrue:[
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2643
        tokenRadix := value.
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2644
        source next.
820
5db3668f751d syntax error if radix is not in 2..36
Claus Gittinger <cg@exept.de>
parents: 802
diff changeset
  2645
5db3668f751d syntax error if radix is not in 2..36
Claus Gittinger <cg@exept.de>
parents: 802
diff changeset
  2646
        (tokenRadix between:2 and:36) ifFalse:[
5db3668f751d syntax error if radix is not in 2..36
Claus Gittinger <cg@exept.de>
parents: 802
diff changeset
  2647
            self syntaxError:'bad radix (must be 2 .. 36)'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2648
                    position:tokenPosition to:(source position1Based - 1).
820
5db3668f751d syntax error if radix is not in 2..36
Claus Gittinger <cg@exept.de>
parents: 802
diff changeset
  2649
        ].
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2650
        source peekOrNil == $- ifTrue:[
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2651
            source next.
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2652
            sign := -1
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2653
        ].
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2654
        value := Integer readFrom:source radix:tokenRadix.
982
f0cc45f113b3 exponent after [eE] is always taken base 10.
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  2655
        nextChar := source peekOrNil.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2656
    ].
821
bc543afcc1e6 give a warning if radix>14 and an e/E is encountered in a float
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2657
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2658
    (nextChar == $.) ifTrue:[
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2659
        nextChar := source nextPeek.
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2660
        (nextChar notNil and:[nextChar isDigitRadix:tokenRadix]) ifTrue:[
821
bc543afcc1e6 give a warning if radix>14 and an e/E is encountered in a float
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2661
            (tokenRadix > 14 and:[nextChar == $e or:[nextChar == $E]]) ifTrue:[
bc543afcc1e6 give a warning if radix>14 and an e/E is encountered in a float
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2662
                self warning:'float with radix > 14 - (e/E are valid digits; not exponent-leaders)'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2663
                    position:tokenPosition to:(source position1Based - 1).
821
bc543afcc1e6 give a warning if radix>14 and an e/E is encountered in a float
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2664
            ].
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2665
            mantissaAndScaledPart := self nextMantissaAndScaledPartWithRadix:tokenRadix.
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2666
            integerPart := value.
1433
867b7e92f7c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  2667
            value := integerPart + (mantissaAndScaledPart first).  "could be a longFloat now"
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2668
            type := #Float.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2669
            nextChar := source peekOrNil
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2670
        ] ifFalse:[
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2671
            ('eEdDqQ' includes:nextChar) ifTrue:[
1339
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2672
                "/ allow 5.e-3 - is this standard ?
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2673
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2674
            ] ifFalse:[
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2675
"/                nextChar == (Character cr) ifTrue:[
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2676
"/                    lineNr := lineNr + 1.
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2677
"/                ].
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2678
                nextChar := peekChar := $..
7dd363978456 start to migrate towards raising ParseError.
Claus Gittinger <cg@exept.de>
parents: 1321
diff changeset
  2679
            ]
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2680
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2681
    ].
821
bc543afcc1e6 give a warning if radix>14 and an e/E is encountered in a float
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2682
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2683
    ('eEdDqQ' includes:nextChar) ifTrue:[
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2684
        (nextChar == $q or:[nextChar == $Q]) ifTrue:[
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2685
            value := value asLongFloat
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2686
        ] ifFalse:[
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2687
            value := value asFloat.
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2688
        ].
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2689
        type := #Float.
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2690
        nextChar := source nextPeek.
982
f0cc45f113b3 exponent after [eE] is always taken base 10.
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  2691
        (nextChar notNil and:[(nextChar isDigit"Radix:tokenRadix") or:['+-' includes:nextChar]]) ifTrue:[
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2692
            expSign := 1.
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2693
            (nextChar == $+) ifTrue:[
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2694
                nextChar := source nextPeek
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2695
            ] ifFalse:[
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2696
                (nextChar == $-) ifTrue:[
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2697
                    nextChar := source nextPeek.
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2698
                    expSign := -1
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2699
                ]
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2700
            ].
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2701
            exp := (Integer readFrom:source) * expSign.
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2702
            value := value * ((value class unity * tokenRadix) raisedToInteger:exp).
983
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  2703
            nextChar := source peek.
982
f0cc45f113b3 exponent after [eE] is always taken base 10.
Claus Gittinger <cg@exept.de>
parents: 947
diff changeset
  2704
        ].
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2705
    ] ifFalse:[
1430
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2706
        value isLimitedPrecisionReal ifTrue:[
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2707
            "/ no type specified - makes it a float
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2708
            value := value asFloat.
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2709
        ].
c3df4cc918d4 number reading
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  2710
1673
3f64c0d10a4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1663
diff changeset
  2711
        parserFlags allowFixedPointLiterals == true ifTrue:[
1676
b8122adeb8a6 comment
Claus Gittinger <cg@exept.de>
parents: 1673
diff changeset
  2712
            "/ ScaledDecimal numbers
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2713
            ('s' includes:nextChar) ifTrue:[
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2714
                nextChar := source nextPeek.
1678
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2715
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2716
                (nextChar notNil and:[(nextChar isDigit)]) ifTrue:[
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2717
                    scale := (Integer readFrom:source).
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2718
                ].
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2719
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2720
                mantissaAndScaledPart isNil ifTrue:[
1678
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2721
                    value := value asFixedPoint:(scale ? 0) 
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2722
                ] ifFalse:[
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2723
                    d := 10 raisedTo:(mantissaAndScaledPart last).
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2724
                    value := FixedPoint 
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2725
                        numerator:((integerPart * d) + mantissaAndScaledPart second)
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2726
                        denominator:d 
1678
edd3a6b568c7 fixedPoint reading
Claus Gittinger <cg@exept.de>
parents: 1676
diff changeset
  2727
                        scale:(scale ? mantissaAndScaledPart last).
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2728
                ].
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2729
                type := #FixedPoint.
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2730
                self
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2731
                    warnPossibleIncompatibility:'fixedPoint literal might be incompatibile with other systems'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2732
                    position:pos1 to:source position1Based.
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2733
            ].
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2734
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2735
    ].
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2736
    
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2737
    nextChar == $- ifTrue:[
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2738
        self
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2739
            warnPossibleIncompatibility:'add a space before ''-'' for compatibility with other systems'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2740
            position:(source position1Based) to:(source position1Based).
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2741
    ].
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2742
1679
c568383eb5ec reading signed radix numbers
Claus Gittinger <cg@exept.de>
parents: 1678
diff changeset
  2743
    tokenValue := token := value * sign.
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2744
    tokenType := type.
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  2745
    (tokenValue isLimitedPrecisionReal) ~~ (tokenType == #Float) ifTrue:[
2127
2e29f839edff Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 2122
diff changeset
  2746
        self shouldImplement.
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  2747
    ].
1347
6168b045f2ef preps for fixedPoint literals
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
  2748
671
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  2749
"/    self markConstantFrom:tokenPosition to:(source position - 1).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2750
    ^ tokenType
313
ee72a11af9a2 handle trailing 'd' after a float (ST-80 compatible Doubles)
Claus Gittinger <cg@exept.de>
parents: 311
diff changeset
  2751
671
8361d4bedc9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  2752
    "Modified: / 1.4.1998 / 13:06:28 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2753
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2754
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2755
nextPrimitive
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2756
    "scan an inline C-primitive."
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2757
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2758
    |nextChar inPrimitive string 
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2759
     index "{ Class: SmallInteger }"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2760
     len   "{ Class: SmallInteger }" |
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2761
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2762
    nextChar := source nextPeek.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2763
    (nextChar == ${) ifFalse:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2764
        ^ self nextSpecialWith:$%
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2765
    ].
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2766
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2767
    string := String new:500.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2768
    len := 500.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2769
    index := 1.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2770
    nextChar := source nextPeek.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2771
    inPrimitive := true.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2772
    [inPrimitive] whileTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2773
        [nextChar == $%] whileFalse:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2774
            nextChar isNil ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2775
                self syntaxError:'unterminated primitive'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2776
                        position:tokenPosition to:source position1Based.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2777
                ^ #Error
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2778
            ].
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2779
            string at:index put:nextChar.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2780
            (index == len) ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2781
                string := string , (String new:len).
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2782
                len := len * 2
505
793f88ee6269 handle end of input while scanning a primitive
Claus Gittinger <cg@exept.de>
parents: 500
diff changeset
  2783
            ].
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2784
            index := index + 1.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2785
            nextChar := source next
505
793f88ee6269 handle end of input while scanning a primitive
Claus Gittinger <cg@exept.de>
parents: 500
diff changeset
  2786
        ].
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2787
        (source peekOrNil == $}) ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2788
            inPrimitive := false
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2789
        ] ifFalse:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2790
            string at:index put:nextChar.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2791
            (index == len) ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2792
                string := string , (String new:len).
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2793
                len := len * 2
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2794
            ].
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2795
            index := index + 1.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2796
            nextChar := source next
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2797
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2798
    ].
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2799
    source next.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2800
    tokenValue := token := string copyTo:(index - 1).
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2801
    tokenType := #Primitive.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2802
    lineNr := lineNr + (tokenValue occurrencesOf:(Character cr)).
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2803
    ^ tokenType
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2804
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2805
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2806
nextSpecial
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2807
    "a special character has been read, look for another one.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2808
     also -number is handled here"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2809
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2810
    |firstChar|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2811
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2812
    firstChar := source next.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2813
    ^ self nextSpecialWith:firstChar
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2814
!
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2815
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2816
nextSpecialWith:firstChar
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2817
    "a special character has been read, look for another one.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2818
     also -number is handled here"
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2819
2155
163e7d5a0730 dont allow x# as selector
Claus Gittinger <cg@exept.de>
parents: 2148
diff changeset
  2820
    |secondChar thirdChar fourthChar string p|
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2821
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2822
    secondChar := source peekOrNil.
241
418eb41350d3 no debugger when parsing '-' (which is wrong anyway ...)
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
  2823
    ((firstChar == $-) and:[secondChar notNil]) ifTrue:[
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2824
        secondChar isDigit ifTrue:[
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2825
            self nextNumber.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2826
            tokenValue := token := tokenValue negated.
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2827
            ^ tokenType
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2828
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2829
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2830
    string := firstChar asString.
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2831
2155
163e7d5a0730 dont allow x# as selector
Claus Gittinger <cg@exept.de>
parents: 2148
diff changeset
  2832
    "/ changed: do not allow second char to be a hash
163e7d5a0730 dont allow x# as selector
Claus Gittinger <cg@exept.de>
parents: 2148
diff changeset
  2833
    "/ unless the first is also.
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2834
    secondChar == $# ifTrue:[
2155
163e7d5a0730 dont allow x# as selector
Claus Gittinger <cg@exept.de>
parents: 2148
diff changeset
  2835
        (parserFlags allowHashAsBinarySelector 
163e7d5a0730 dont allow x# as selector
Claus Gittinger <cg@exept.de>
parents: 2148
diff changeset
  2836
        and:[firstChar == $#]) ifFalse:[
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2837
            tokenName := token := string.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2838
            tokenType := #BinaryOperator.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2839
            ^ tokenType
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2840
        ].
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2841
    ].
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  2842
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2843
    secondChar notNil ifTrue:[
2290
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2844
        (secondChar == $-) ifTrue:[
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2845
            "special- look if minus belongs to number following"
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2846
            p := source position1Based.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2847
            source next.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2848
            thirdChar := source peekOrNil.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2849
            source position1Based:p.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2850
            (thirdChar notNil and:[thirdChar isDigit]) ifTrue:[
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2851
                tokenName := token := string.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2852
                tokenType := #BinaryOperator.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2853
                self 
2291
8a52a38a1c38 changed: #nextSpecialWith:
Claus Gittinger <cg@exept.de>
parents: 2290
diff changeset
  2854
                    warnPossibleIncompatibility:'add a space before ''-'' for compatibility with stc and other ST systems' 
2290
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2855
                    position:p 
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2856
                    to:p.
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2857
                ^ tokenType
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2858
            ]
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  2859
        ].
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2860
        (self isSpecialOrExtendedSpecialCharacter:secondChar) ifTrue:[
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2861
            source next.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2862
            string := string copyWith:secondChar.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2863
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2864
            thirdChar := source peekOrNil.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2865
            thirdChar notNil ifTrue:[
1722
fc1fcce91650 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1715
diff changeset
  2866
                (self isSpecialOrExtendedSpecialCharacter:thirdChar) ifTrue:[
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2867
                    (thirdChar == $-) ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2868
                        "special- look if minus belongs to number following"
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2869
                        p := source position1Based.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2870
                        source next.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2871
                        fourthChar := source peekOrNil.
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2872
                        source position1Based:p.
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2873
                        fourthChar isDigit ifTrue:[
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2874
                            tokenName := token := string.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2875
                            tokenType := #BinaryOperator.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2876
                            self 
2291
8a52a38a1c38 changed: #nextSpecialWith:
Claus Gittinger <cg@exept.de>
parents: 2290
diff changeset
  2877
                                warnPossibleIncompatibility:'add a space before ''-'' for compatibility with stc and other ST systems' 
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2878
                                position:p 
1302
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2879
                                to:p.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2880
                            ^ tokenType
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2881
                        ]
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2882
                    ].
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2883
                    source next.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2884
                    string := string copyWith:thirdChar.
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2885
                ].
68c857cffd5a allow 3 character binopsö
Claus Gittinger <cg@exept.de>
parents: 1298
diff changeset
  2886
            ].
526
adb8aed3a691 added compatibility warnings for '-' without whitespace
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  2887
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2888
    ].
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2889
    tokenName := token := string.
45
e8331ba8ad5d *** empty log message ***
claus
parents: 41
diff changeset
  2890
    tokenType := #BinaryOperator.
3
b63b8a6b71fb *** empty log message ***
claus
parents: 0
diff changeset
  2891
    ^ tokenType
241
418eb41350d3 no debugger when parsing '-' (which is wrong anyway ...)
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
  2892
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  2893
    "Modified: / 5.3.1998 / 02:54:54 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2894
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2895
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2896
nextString:delimiter
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2897
    "a single quote has been scanned; scan the string (caring for doubled quotes"
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  2898
264
f10298cba622 oops - corrupted version checked in
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2899
    |nextChar string pos
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2900
     index "{ Class: SmallInteger }"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2901
     len   "{ Class: SmallInteger }"
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2902
     inString peekChar|
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2903
1470
62844fc53a87 String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 1458
diff changeset
  2904
    string := String uninitializedNew:20.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2905
    len := 20.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2906
    index := 1.
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2907
    pos := source position1Based.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2908
    source next.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2909
    nextChar := source next.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2910
    inString := true.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2911
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2912
    [inString] whileTrue:[
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2913
        nextChar isNil ifTrue:[
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2914
            self syntaxError:'unexpected end-of-input in String'
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2915
                    position:pos to:(source position1Based - 1).
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  2916
            self markStringFrom:pos to:source position1Based-1.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2917
            token := nil.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2918
            tokenType := #EOF.
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2919
            ^ tokenType
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2920
        ].
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2921
        (nextChar == Character cr) ifTrue:[
610
0aa21dd74161 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  2922
            lineNr := lineNr + 1
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2923
        ] ifFalse:[
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2924
            (nextChar == delimiter) ifTrue:[
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2925
                (source peekOrNil == delimiter) ifTrue:[
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2926
                    source next
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2927
                ] ifFalse:[
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2928
                    inString := false
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2929
                ]
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2930
            ] ifFalse:[
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  2931
                parserFlags allowExtendedSTXSyntax == true ifTrue:[
1681
2fd6c846b159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1679
diff changeset
  2932
                    (nextChar == $\) ifTrue:[
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2933
                        peekChar := source peekOrNil.    
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2934
                        peekChar notNil ifTrue:[
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2935
                            source next.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2936
                            nextChar := self escapeCharacterFor:peekChar.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2937
                        ]
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2938
                    ]
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2939
                ]
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2940
            ].
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2941
        ].
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2942
        inString ifTrue:[
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2943
            nextChar notNil ifTrue:[
1489
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
  2944
                nextChar codePoint > 255 ifTrue:[
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
  2945
                    string bitsPerCharacter < nextChar bitsPerCharacter ifTrue:[
1485
f80c22a4f05b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1484
diff changeset
  2946
                        string := string asUnicodeString.
f80c22a4f05b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1484
diff changeset
  2947
                    ].
f80c22a4f05b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1484
diff changeset
  2948
                ].
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2949
                string at:index put:nextChar.
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2950
                (index == len) ifTrue:[
1485
f80c22a4f05b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1484
diff changeset
  2951
                    string := string , (string species new:len).
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2952
                    len := len * 2
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2953
                ].
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  2954
                index := index + 1.
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2955
            ].
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2956
            nextChar := source next
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2957
        ]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2958
    ].
661
ffb42bda9e5a more syntaxHighlighting
Claus Gittinger <cg@exept.de>
parents: 659
diff changeset
  2959
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2960
    tokenValue := token := string copyTo:(index - 1).
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2961
    tokenType := #String.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2962
    ^ tokenType
546
db5ce842f64f added #scanTokens for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
  2963
1781
3d5065c74df5 string scanning hooks
Claus Gittinger <cg@exept.de>
parents: 1755
diff changeset
  2964
    "Created: / 01-08-2006 / 14:56:07 / cg"
1856
209089a85ed3 error messages shortened and cleanup
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  2965
    "Modified: / 22-08-2006 / 14:10:26 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2966
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  2967
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2968
nextSymbolAfterHash
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2969
    "helper: a # has been read - return #Symbol token or nil"
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2970
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2971
    |nextChar string part isNameSpaceSymbol allowUnderscoreInIdentifier
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2972
     allowPeriodInSymbol|
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2973
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2974
    nextChar := source peek.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2975
    nextChar isNil ifTrue:[^ nil].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2976
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2977
    allowUnderscoreInIdentifier := parserFlags allowUnderscoreInIdentifier.
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2978
    allowPeriodInSymbol := parserFlags allowPeriodInSymbol.
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2979
    isNameSpaceSymbol := false.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2980
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2981
    nextChar isLetter ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2982
        ((nextChar == $_) and:[allowUnderscoreInIdentifier]) ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2983
            ((nextChar == $.) and:[allowPeriodInSymbol]) ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2984
                ^ nil
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2985
            ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2986
        ]
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2987
    ].
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2988
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2989
    string := ''.
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2990
    [
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2991
        nextChar notNil 
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2992
        and:[nextChar isLetterOrDigit 
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2993
            or:[(nextChar == $_ and:[allowUnderscoreInIdentifier])
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  2994
            or:[nextChar == $. and:[allowPeriodInSymbol and:[source peek isLetter]]]]
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2995
         ]
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2996
    ] whileTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2997
        nextChar == $_ ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2998
            part := nil.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  2999
        ] ifFalse:[
2181
9498c1060445 oops #nextSymbolAfterHash
sr
parents: 2180
diff changeset
  3000
            (allowPeriodInSymbol and:[nextChar == $.]) ifTrue:[
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3001
                part := nil.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3002
            ] ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3003
                part := source nextAlphaNumericWord.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3004
            ]
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3005
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3006
        part notNil ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3007
            string := string , part.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3008
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3009
        nextChar := source peek.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3010
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3011
        ((allowUnderscoreInIdentifier and:[nextChar == $_])
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3012
        or:[ allowPeriodInSymbol and:[nextChar == $.] ]) ifTrue:[
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3013
            nextChar == $_ ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3014
                self warnUnderscoreAt:source position1Based.
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3015
            ] ifFalse:[
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3016
                self warnPeriodAt:source position1Based.
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3017
            ].
2181
9498c1060445 oops #nextSymbolAfterHash
sr
parents: 2180
diff changeset
  3018
            [(nextChar == $_) or:[(allowPeriodInSymbol and:[nextChar == $.])]] whileTrue:[
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3019
                string := string copyWith:nextChar.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3020
                nextChar := source nextPeek.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3021
                (nextChar notNil and:[nextChar isLetterOrDigit]) ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3022
                    string := string , source nextAlphaNumericWord.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3023
                    nextChar := source peek.
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3024
                ] ifFalse:[
2181
9498c1060445 oops #nextSymbolAfterHash
sr
parents: 2180
diff changeset
  3025
                    (allowPeriodInSymbol and:[string last == $.]) ifTrue:[
2180
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3026
                        peekChar := nextChar.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3027
                        nextChar := $..
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3028
                        string := string copyWithoutLast:1.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3029
                        tokenValue := token := string asSymbol.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3030
                        tokenType := #Symbol.
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3031
                        ^ tokenType
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3032
                    ].
891d45ffad68 allowPeriodInSymbol - to read old st80/squeak code
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  3033
                ].
1656
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3034
            ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3035
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3036
        (nextChar == $:) ifFalse:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3037
            self markSymbolFrom:tokenPosition to:(source position1Based-1).
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3038
            tokenValue := token := string asSymbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3039
            tokenType := #Symbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3040
            ^ tokenType
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3041
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3042
        string := string copyWith:nextChar.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3043
        nextChar := source nextPeek.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3044
        parserFlags allowLiteralNameSpaceSymbols ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3045
            (nextChar == $:) ifTrue:[
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3046
                string := string copyWith:nextChar.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3047
                nextChar := source nextPeek.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3048
                isNameSpaceSymbol := true.      
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3049
            ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3050
        ].
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3051
    ].                   
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3052
    tokenValue := token := string asSymbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3053
    tokenType := #Symbol.
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3054
    ^ tokenType
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3055
!
04303a87cae4 V'Age ESSymbols
Claus Gittinger <cg@exept.de>
parents: 1653
diff changeset
  3056
264
f10298cba622 oops - corrupted version checked in
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3057
nextToken
f10298cba622 oops - corrupted version checked in
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3058
    "return the next token from the source-stream"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3059
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  3060
    |skipping actionBlock v ch tok|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3061
2612
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
  3062
    tokenLastEndPosition := source position1Based.
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
  3063
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3064
    [true] whileTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3065
        peekChar notNil ifTrue:[
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3066
            "/ kludge - should be called peekSym.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3067
            "/ used when xlating Foo.Bar into Foo::Bar
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3068
            peekChar isSymbol ifTrue:[
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3069
                token := nil.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3070
                tokenType := peekChar.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3071
                peekChar := nil.
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3072
                ^ tokenType
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3073
            ].
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3074
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3075
            peekChar isSeparator ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3076
                peekChar == (Character cr) ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3077
                    lineNr := lineNr + 1.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3078
                ].
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3079
                hereChar := peekChar.
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3080
                peekChar := peekChar2.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3081
                peekChar2 := nil.
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3082
                self eolIsWhiteSpace ifFalse:[
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3083
                    token := nil.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3084
                    tokenType := #EOL.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3085
                    ^ tokenType
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3086
                ].
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3087
            ].
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3088
        ].
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3089
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3090
        peekChar notNil ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3091
            ch := peekChar.
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3092
            peekChar := peekChar2.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3093
            peekChar2 := nil.
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3094
            hereChar := nil.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3095
        ] ifFalse:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3096
            skipping := true.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3097
            [skipping] whileTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3098
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3099
                outStream notNil ifTrue:[
1497
96166a974288 *** empty log message ***
ca
parents: 1492
diff changeset
  3100
                    [
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3101
                        hereChar := source peekOrNil.  
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3102
                        (hereChar == Character space)
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3103
                        or:[hereChar isSeparator]
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3104
                    ] whileTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3105
                        source next.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3106
                        outStream space. 
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3107
                        outCol := outCol + 1.
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3108
                        hereChar == (Character cr) ifTrue:[
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3109
                            self eolIsWhiteSpace ifFalse:[
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3110
                                token := nil.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3111
                                tokenType := #EOL.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3112
                                ^ tokenType
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3113
                            ].
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3114
                        ]
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3115
                    ]
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3116
                ] ifFalse:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3117
                    hereChar := source skipSeparatorsExceptCR.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3118
                ].
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3119
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3120
                hereChar == (Character cr) ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3121
                    lineNr := lineNr + 1.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3122
                    source next.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3123
                    outStream notNil ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3124
                        outStream cr.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3125
                        outCol := 1
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3126
                    ].
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3127
                    self eolIsWhiteSpace ifFalse:[
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3128
                        token := nil.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3129
                        tokenType := #EOL.
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3130
                        ^ tokenType
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3131
                    ].
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3132
                ] ifFalse:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3133
                    hereChar == (Character return) ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3134
                        outStream notNil ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3135
                            outStream nextPut:hereChar.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3136
                            outCol := 1
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3137
                        ].
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3138
                        source next.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3139
                    ] ifFalse:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3140
                        (self isCommentCharacter:hereChar) ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3141
                            "start of a comment"
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3142
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3143
                            self skipComment.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3144
                            hereChar := source peekOrNil.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3145
                        ] ifFalse:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3146
                            skipping := false
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3147
                        ]
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3148
                    ]
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3149
                ]
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3150
            ].
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3151
            hereChar isNil ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3152
                token := nil.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3153
                tokenType := #EOF.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3154
                ^ tokenType
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3155
            ].
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3156
            ch := hereChar
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3157
        ].
2134
4f42568104c5 handle non-positionable streams
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3158
        source isPositionable ifTrue:[
4f42568104c5 handle non-positionable streams
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3159
            tokenPosition := source position1Based.
4f42568104c5 handle non-positionable streams
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3160
        ].
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3161
        tokenLineNr := lineNr.
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3162
1489
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
  3163
        (v := ch codePoint) == 0 ifTrue:[
b844ef2acd37 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1488
diff changeset
  3164
            v := Character space codePoint
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3165
        ].
1483
9b05e74599e6 care for non-iso characters
Claus Gittinger <cg@exept.de>
parents: 1470
diff changeset
  3166
        v <= 16rFF ifTrue:[
9b05e74599e6 care for non-iso characters
Claus Gittinger <cg@exept.de>
parents: 1470
diff changeset
  3167
            actionBlock := actionArray at:v.
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  3168
        ] ifFalse:[
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  3169
            actionBlock := unicodeActions at:v ifAbsent:nil
1483
9b05e74599e6 care for non-iso characters
Claus Gittinger <cg@exept.de>
parents: 1470
diff changeset
  3170
        ].
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3171
        actionBlock notNil ifTrue:[
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3172
            tok := actionBlock value:self value:ch.
1027
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3173
            tok notNil ifTrue:[
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3174
                ^ tok
c944d9be2a69 silently scan Foo.Bar as Foo::Bar,
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
  3175
            ].
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  3176
            "/ a nil token means: continue reading
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3177
        ] ifFalse:[
1705
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3178
            (ch isNationalLetter and:[parserFlags allowNationalCharactersInIdentifier]) ifTrue:[
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3179
                tok := self nextIdentifier.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3180
                tok notNil ifTrue:[
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3181
                    ^ tok
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3182
                ].
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3183
            ] ifFalse:[
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3184
                ^ self invalidCharacter:ch.
19fff84a354a more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1681
diff changeset
  3185
            ]
793
3ee3ebe0145e allow for action to skip something and continue in nextToken
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  3186
        ]
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3187
    ].
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3188
2481
ea879f38ff03 added: #eolIsWhiteSpace
Claus Gittinger <cg@exept.de>
parents: 2478
diff changeset
  3189
    "Modified: / 13-09-1995 / 12:56:14 / claus"
2484
88c45a8910f2 experimental left-arrow
Claus Gittinger <cg@exept.de>
parents: 2481
diff changeset
  3190
    "Modified: / 25-03-2011 / 13:56:28 / cg"
2612
6c04d60c1403 More fixes to keep node position in the source. Not yet fully implemented
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2523
diff changeset
  3191
    "Modified: / 27-07-2011 / 15:36:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3192
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3193
264
f10298cba622 oops - corrupted version checked in
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3194
nextToken:aCharacter
1026
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  3195
    "return a character token"
831aa102111f comments
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  3196
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  3197
    tokenType := token := aCharacter.
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3198
    hereChar notNil ifTrue:[source next].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3199
    ^ tokenType
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 546
diff changeset
  3200
707
2fe4b3a7708a extracted keyword detection into a separate method for easier
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  3201
    "Modified: / 13.5.1998 / 15:10:23 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3202
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3203
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3204
nextUnderline
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3205
    "return a character token"
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3206
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  3207
    parserFlags allowUnderscoreInIdentifier ifTrue:[
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3208
        ^ self nextIdentifier
1636
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  3209
    ].
98afdcdacde8 compilerflags separated into ParserFlags.
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  3210
    ^ self nextToken:$_
1501
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3211
!
ca87aed7eb82 allowUnderline etc. are inst-flags
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  3212
264
f10298cba622 oops - corrupted version checked in
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3213
skipComment
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3214
    "skip over a comment; handles ST/X eol comments (quote-slash)
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3215
     and multiline-delimiter comment (quote-less-less)."
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3216
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3217
    |commentStream commentType commentText startPos endPos stillInComment anyNonBlank
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3218
     delimiter line|
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3219
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3220
    anyNonBlank := false.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3221
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3222
    saveComments ifTrue:[
2148
2b415d61c2f3 care for unicode in skipComment
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
  3223
        commentStream := CharacterWriteStream on:''.
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3224
        self beginComment.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3225
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3226
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3227
    outStream notNil ifTrue:[
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3228
        outStream nextPut:Character doubleQuote.
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3229
        outCol := outCol + 1
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3230
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3231
1371
de4c37ac12fc code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  3232
    startPos := source position1Based.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3233
    source next.
656
e4249b285fd8 using #peekOrNil makes it some 10% faster when scanning
Claus Gittinger <cg@exept.de>
parents: 650
diff changeset
  3234
    hereChar := source peekOrNil.
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3235
    commentType := #regularComment.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3236
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3237
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3238
     special ST/X addition:
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3239
     a $/ right after the initial double quote makes it an up-to-end-of-line comment,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3240
     which is very useful to comment out parts of filed-in source code.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3241
     Since this is non-standard, use it in very rare cases only. 
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3242
     (maybe the upcoming ansi-standard adds something similar - in this case, I will
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3243
      change it without notice)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3244
1707
28a94a1701c2 more support for filein of ST/V code
Claus Gittinger <cg@exept.de>
parents: 1705
diff changeset
  3245
    (hereChar == $/ and:[parserFlags allowSTXEOLComments]) ifTrue:[
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3246
        hereChar := source nextPeek.
2138
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3247
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3248
        self skipToEndOfLineRememberingIn:commentStream.
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3249
        endPos := source position1Based.
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3250
        self markCommentFrom:startPos to:endPos.
2138
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3251
        commentType := #eolComment.
2833
6b116070183a changed: #skipComment
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  3252
        self warnSTXSpecialCommentAt:startPos to:endPos-1.
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3253
        outStream notNil ifTrue:[
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3254
            outStream cr.
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3255
            outCol := 1
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3256
        ].
1355
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3257
        "skip cr"
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3258
        source next.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3259
    ] ifFalse:[
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3260
        (hereChar == $< and:[parserFlags allowSTXDelimiterComments]) ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3261
            hereChar := source nextPeek.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3262
            (hereChar == $<) ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3263
                "everything up to EOL is the delimiter; comment extends to everything up
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3264
                 to a line consisting of the delimiter alone"
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3265
                commentStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3266
                    commentStream nextPutAll:'>>'
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3267
                ].
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3268
                hereChar := source nextPeek.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3269
                delimiter := String streamContents:[:s | self skipToEndOfLineRememberingIn:s].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3270
                delimiter withoutSeparators isEmpty ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3271
                    self parseError:'invalid delimiter in comment'
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3272
                ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3273
                hereChar == Character cr ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3274
                    hereChar := source nextPeek.
1355
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3275
                ].
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3276
                commentStream notNil ifTrue:[
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3277
                    commentStream nextPutLine:delimiter
1355
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3278
                ].
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3279
                stillInComment := true.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3280
                [stillInComment] whileTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3281
                    line := String streamContents:[:s | self skipToEndOfLineRememberingIn:s].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3282
                    commentStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3283
                        commentStream nextPutLine:line
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3284
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3285
                    hereChar == Character cr ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3286
                        hereChar := source nextPeek.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3287
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3288
                    stillInComment := (line ~= delimiter).    
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3289
                ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3290
                commentType := #delimiterComment.
1355
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3291
            ] ifFalse:[
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3292
                commentStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3293
                    commentStream nextPut:$>
1355
39aba48520ed scan comments which include "" as a single big comment
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
  3294
                ].
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3295
            ].
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3296
        ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3297
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3298
        (commentType == #regularComment) ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3299
            hereChar == ${ ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3300
                "
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3301
                 special ST/X addition:
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3302
                 a ${ right after the initial double quote starts a directive
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3303
                "
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3304
                self parseDirective
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3305
            ].
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3306
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3307
            stillInComment := true.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3308
            [stillInComment] whileTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3309
                stillInComment := false.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3310
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3311
                [hereChar notNil and:[hereChar ~~ (Character doubleQuote)]] whileTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3312
                    hereChar isSeparator ifFalse:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3313
                        anyNonBlank := true.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3314
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3315
                    hereChar == (Character cr) ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3316
                        lineNr := lineNr + 1.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3317
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3318
                    commentStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3319
                        commentStream nextPut:hereChar
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3320
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3321
                    outStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3322
                        outStream nextPut:hereChar.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3323
                        outCol := outCol + 1
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3324
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3325
                    hereChar := source nextPeek
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3326
                ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3327
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3328
                hereChar isNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3329
                    self markCommentFrom:startPos to:(source size).
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3330
                    self warning:'unclosed comment' position:startPos to:(source position1Based)
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3331
                ] ifFalse:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3332
                    self markCommentFrom:startPos to:(source position1Based).
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3333
                    outStream notNil ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3334
                        outStream nextPut:(Character doubleQuote).
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3335
                        outCol := outCol + 1
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3336
                    ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3337
                ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3338
                endPos := source position1Based.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3339
                "skip final dQuote"
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3340
                source next.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3341
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3342
                (source peek == Character doubleQuote) ifTrue:[
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3343
                    stillInComment := true.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3344
                    hereChar := source nextPeek.
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3345
                ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3346
            ].
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3347
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3348
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3349
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3350
    saveComments ifTrue:[
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3351
        commentText := commentStream contents.
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3352
        self endComment:commentText type:commentType.
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3353
    ].
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3354
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3355
    parserFlags warnAboutBadComments ifTrue:[
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3356
        anyNonBlank ifFalse:[
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3357
            commentType ~~ #eolComment ifTrue:[
2876
57e181acee74 changed: #skipComment
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  3358
                self isDoIt ifFalse:[
57e181acee74 changed: #skipComment
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  3359
                    self warning:'empty comment' position:startPos to:endPos
57e181acee74 changed: #skipComment
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  3360
                ]
1653
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3361
            ].
db35fa50902a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
  3362
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3363
    ].
460
c023e3713433 handle identifier in directives;
Claus Gittinger <cg@exept.de>
parents: 453
diff changeset
  3364
2876
57e181acee74 changed: #skipComment
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  3365
    "Modified: / 13-06-2012 / 08:59:50 / cg"
2138
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3366
!
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3367
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3368
skipToEndOfLineRememberingIn:commentStreamOrNil
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3369
    [hereChar notNil and:[hereChar ~~ Character cr]] whileTrue:[
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3370
        commentStreamOrNil notNil ifTrue:[
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3371
            commentStreamOrNil nextPut:hereChar
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3372
        ].
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3373
        outStream notNil ifTrue:[
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3374
            outStream nextPut:hereChar.
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3375
            outCol := outCol + 1
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3376
        ].
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3377
        hereChar := source nextPeek.
330345945d40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2134
diff changeset
  3378
    ].
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3379
    lineNr := lineNr + 1.
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3380
! !
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3381
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3382
!Scanner::Comment methodsFor:'accessing'!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3383
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3384
commentString
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3385
    "return the value of the instance variable 'commentString' (automatically generated)"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3386
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3387
    ^ commentString
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3388
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3389
    "Created: / 17.2.1998 / 14:44:33 / cg"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3390
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3391
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3392
commentString:something
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3393
    "set the value of the instance variable 'commentString' (automatically generated)"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3394
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3395
    commentString := something.
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3396
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3397
    "Created: / 17.2.1998 / 14:44:33 / cg"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3398
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3399
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3400
commentString:commentStringArg commentType:commentTypeArg
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3401
    commentString := commentStringArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3402
    commentType := commentTypeArg.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3403
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3404
    "Created: / 17.2.1998 / 14:44:33 / cg"
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3405
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3406
648
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3407
commentType
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3408
    ^ commentType
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3409
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3410
    "Created: / 17.2.1998 / 14:44:33 / cg"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3411
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3412
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3413
commentType:something
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3414
    commentType := something.
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3415
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3416
    "Created: / 17.2.1998 / 14:44:33 / cg"
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3417
!
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3418
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3419
string
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3420
    ^ commentString
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3421
f2e96d4456ec fixed keepComments.
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  3422
    "Created: / 17.2.1998 / 14:49:52 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  3423
! !
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3424
1580
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3425
!Scanner::Comment methodsFor:'converting'!
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3426
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3427
asString
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3428
    ^ commentString.
1583
031fae13e533 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1582
diff changeset
  3429
!
031fae13e533 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1582
diff changeset
  3430
031fae13e533 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1582
diff changeset
  3431
asStringCollection
031fae13e533 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1582
diff changeset
  3432
    ^ commentString asStringCollection.
1580
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3433
! !
c4b1c5e36c67 +comment asString
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  3434
1651
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3435
!Scanner::Comment methodsFor:'queries'!
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3436
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3437
isEndOfLineComment
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3438
    ^ commentType == #eolComment
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3439
! !
bf51380bee3a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1649
diff changeset
  3440
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3441
!Scanner::Directive class methodsFor:'instance creation'!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3442
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3443
newClassDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3444
    ^ ClassDirective new
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3445
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3446
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3447
newClassHintDirective
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3448
    ^ ClassHintDirective new
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3449
! !
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3450
1598
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3451
!Scanner::Directive methodsFor:'queries'!
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3452
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3453
isClassHintDirective
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3454
    ^ false
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3455
! !
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3456
1596
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3457
!Scanner::Directive::ClassDirective methodsFor:'accessing'!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3458
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3459
className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3460
    ^ className
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3461
!
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3462
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3463
className:something
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3464
    className := something.
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3465
! !
482fb73aa844 directive parsing
Claus Gittinger <cg@exept.de>
parents: 1595
diff changeset
  3466
1598
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3467
!Scanner::Directive::ClassHintDirective methodsFor:'queries'!
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3468
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3469
isClassHintDirective
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3470
    ^ true
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3471
! !
cf7e99bd8ce3 classHint stuff
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  3472
359
5c3718455360 support for nameSpaces (space::name)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  3473
!Scanner class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
  3474
2740
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  3475
version
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3476
    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.286 2012-11-13 13:03:03 cg Exp $'
2740
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  3477
!
0a71a9bb034f changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 2737
diff changeset
  3478
2290
d84dd6eff7ea changed:
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  3479
version_CVS
2983
3d721bb07c48 class: Scanner
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
  3480
    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.286 2012-11-13 13:03:03 cg Exp $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
  3481
! !
1321
e34f7e7d28a0 preps for character escapes
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  3482
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  3483
Scanner initialize!