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