AbstractSyntaxHighlighter.st
author Claus Gittinger <cg@exept.de>
Tue, 25 Feb 2020 02:40:09 +0100
changeset 4640 a1bb370605bc
parent 4578 6a1d8da4191d
child 4669 c0e6828144eb
permissions -rw-r--r--
#DOCUMENTATION by exept class: ParserFlags class comment/format in: #allowCStrings #allowEStrings changed: #initialize
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
     1
"{ Encoding: utf8 }"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
     2
2506
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     3
"
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     4
 COPYRIGHT (c) 2006 by eXept Software AG
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     5
	      All Rights Reserved
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     6
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     7
 This software is furnished under a license and may be used
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     8
 only in accordance with the terms of that license and with the
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    10
 be provided or otherwise made available to, or used by, any
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    11
 other person.  No title to or ownership of the software is
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    12
 hereby transferred.
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    13
"
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libcomp' }"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
3561
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
    16
"{ NameSpace: Smalltalk }"
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
    17
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
Parser subclass:#AbstractSyntaxHighlighter
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
    19
	instanceVariableNames:'method sourceText preferences fullSelectorCheck commentColor
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
    20
		commentEmphasis commentFont constantColor constantEmphasis'
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	classVariableNames:''
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	poolDictionaries:''
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
	category:'System-Compiler'
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
2506
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    26
!AbstractSyntaxHighlighter class methodsFor:'documentation'!
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    27
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    28
copyright
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    29
"
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    30
 COPYRIGHT (c) 2006 by eXept Software AG
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    31
	      All Rights Reserved
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    32
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    33
 This software is furnished under a license and may be used
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    34
 only in accordance with the terms of that license and with the
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    35
 inclusion of the above copyright notice.   This software may not
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    36
 be provided or otherwise made available to, or used by, any
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    37
 other person.  No title to or ownership of the software is
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    38
 hereby transferred.
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    39
"
3345
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    40
!
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    41
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    42
documentation
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    43
"
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    44
    common superclass for (smalltalk-) syntax highlighting.
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    45
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    46
    This will parse the source code and update the local copy of the
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    47
    sourceText (in that instvar) by changing emphasis and color,
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    48
    as syntax elements are encountered.
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    49
    This is done by redefining appropriate markXXX methods, which are
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    50
    called by the parser whenever an interesting syntactic construct is encountered.
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    51
    These methods are no-ops in the Parser class, but redefined here to update
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    52
    the colorization of sourceText.
4200
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    53
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    54
    Caveat:
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    55
        used to be a smalltalk syntax highlighter and therefore (wrongly) subclassed Parser.
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    56
        However, over time, much functionality was added, which is of use for other languages also
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    57
        and this class will therefore be changed to use composition and have parsing delegated.
e0b3fd0f438c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4198
diff changeset
    58
        to be independent of the language and to not inherit stuff, which is not needed.
3345
718b64ff3db3 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3344
diff changeset
    59
"
2506
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    60
! !
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!AbstractSyntaxHighlighter class methodsFor:'api highlighting'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
formatClassDefinition:aString in:aClass
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
    "format (recolor) a class definition expression in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    ^ self formatExpression:aString in:aClass
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
2506
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    71
formatClassDefinition:aString in:aClass elementsInto: elements
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    72
    "format (recolor) a class definition expression in a given class.
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    73
     Return the text containing font changes and color information."
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    74
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    75
    ^ self formatExpression:aString in:aClass
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    76
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    77
    "Created: / 10-04-2011 / 18:18:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    78
!
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
    79
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
formatExpression:aString in:aClass
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    "format (recolor) an expression in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
    84
    |parser|
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
    aString isNil ifTrue:[^ nil].
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    parser := self for:(ReadStream on:aString string) in:aClass.
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
    89
    ^ parser formatExpression:aString in:aClass
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
     self
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    93
        formatExpression:'(1 + 2) max:5'
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
    94
        in:UndefinedObject
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
    "Modified: / 7.4.1998 / 09:57:19 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    "Created: / 9.4.1998 / 16:57:16 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
formatMethod:aString in:aClass
3191
e538b29d3cfb Mark methods as obsolete
Stefan Vogel <sv@exept.de>
parents: 3189
diff changeset
   102
    <resource: #obsolete>
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
    self obsoleteMethodWarning:'use #formatMethodSource:in:'.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    ^ self formatMethod:nil source:aString in:aClass using:nil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
     self
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   111
	formatMethod:'foo
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
    ^ self bar:''hello''.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
    ' , (Character doubleQuote asString) , 'some comment' , (Character doubleQuote asString) , '
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
'
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   116
	in:UndefinedObject
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
    "Modified: / 28-04-2010 / 13:03:04 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
formatMethod:aString in:aClass using:preferencesOrNil
3191
e538b29d3cfb Mark methods as obsolete
Stefan Vogel <sv@exept.de>
parents: 3189
diff changeset
   123
    <resource: #obsolete>
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
    self obsoleteMethodWarning:'use #formatMethodSource:in:using:'.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    ^ self formatMethod:nil source:aString in:aClass using:preferencesOrNil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    "Modified: / 28-04-2010 / 13:03:15 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
formatMethod:methodOrNil source:aString in:aClass
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
    ^ self formatMethod:methodOrNil source:aString in:aClass using:nil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
     self
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   141
	formatMethod:'foo
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
    ^ self bar:''hello''.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    ' , (Character doubleQuote asString) , 'some comment' , (Character doubleQuote asString) , '
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
'
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   146
	in:UndefinedObject
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    "Created: / 28-04-2010 / 13:44:24 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
formatMethod:methodOrNil source:aString in:aClass using:preferencesOrNil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    aString isNil ifTrue:[^ nil].
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   157
    ^ (self for:aString in:aClass)
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   158
        formatMethod:methodOrNil source:aString in:aClass using:preferencesOrNil
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   159
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
     self
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   162
        formatMethod:'foo
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
    ^ self bar:''hello''.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
    ' , (Character doubleQuote asString) , 'some comment' , (Character doubleQuote asString) , '
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
'
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   167
        in:UndefinedObject
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
    "Created: / 28-04-2010 / 13:01:42 / cg"
2527
a87cf2c8edf2 changed: #formatMethod:source:in:using:
Claus Gittinger <cg@exept.de>
parents: 2526
diff changeset
   171
    "Modified: / 05-07-2011 / 11:22:20 / cg"
4323
8f45288cf559 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4272
diff changeset
   172
    "Modified: / 22-12-2018 / 09:01:10 / Claus Gittinger"
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
formatMethodSource:aString in:aClass
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
    ^ self formatMethod:nil source:aString in:aClass using:nil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
     self
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   183
	formatMethod:'foo
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
    ^ self bar:''hello''.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
    ' , (Character doubleQuote asString) , 'some comment' , (Character doubleQuote asString) , '
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
'
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   188
	in:UndefinedObject
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
    "
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
    "Created: / 28-04-2010 / 12:58:13 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
formatMethodSource:aString in:aClass using:preferencesOrNil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
    "format (recolor) a method in a given class.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
     Return the text containing font changes and color information."
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
    ^ self formatMethod:nil source:aString in:aClass using:preferencesOrNil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
    "Modified: / 28-04-2010 / 13:02:11 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   203
!AbstractSyntaxHighlighter class methodsFor:'highlighting'!
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   204
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   205
colorize:text forErrorAtPosition:pos withOriginal:originalString
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   206
    |eColor endPos|
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   207
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   208
    endPos := pos + 1.
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   209
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   210
    "/ mhmh - which is better ...
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   211
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   212
    "/ alternative1: colorize the rest after the error in red
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   213
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   214
    eColor := UserPreferences current errorColor.
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   215
    eColor notNil ifTrue:[
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   216
        ^ text
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   217
            emphasizeFrom:endPos 
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   218
            to:text size 
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   219
            with:(#color->eColor).
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   220
    ].
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   221
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   222
    "/ alternative2: take the original emphasis for the rest
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   223
    endPos >= text size ifTrue:[
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   224
        ^ text
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   225
    ] ifFalse:[
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   226
        ^ (text copyTo:endPos) , (originalString copyFrom:(endPos+1))
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   227
    ].
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   228
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   229
    "/ alternative3: no emphasis for rest.
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   230
    ^ text
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   231
! !
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   232
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   233
!AbstractSyntaxHighlighter class methodsFor:'misc'!
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   234
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   235
collectionEnumerationSelectors
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   236
    "these are considered wellknown, builtin selectors of very common
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   237
     collection enumeration methods.
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   238
     These are optionally shown with another color (dark green)"
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   239
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   240
    ^ #(
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   241
	collect:
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   242
	select:
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   243
	inject:into:
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   244
	count:
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   245
	collect:thenSelect:
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   246
	select:thenCollect:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   247
    )
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   248
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   249
    "Created: / 14-02-2012 / 15:56:59 / cg"
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   250
!
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   251
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   252
controlFlowSelectors
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   253
    "these are considered wellknown, builtin selectors of very common
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   254
     control flow constructs. Correspond to syntax or special forms in other
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   255
     languages. These are optionally shown with another color (blue)"
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   256
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   257
    ^ #(
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   258
        ifTrue: ifFalse:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   259
        ifTrue:ifFalse: ifFalse:ifTrue:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   260
        ifNil: ifNotNil:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   261
        ifNil:ifNotNil: ifNotNil:ifNil:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   262
        and: or:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   263
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   264
        whileTrue:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   265
        whileFalse:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   266
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   267
        to:do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   268
        downTo:do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   269
        to:by:do:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   270
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   271
        loop
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   272
        repeat
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   273
        whileTrue
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   274
        whileFalse
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   275
        doWhile:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   276
        doUntil:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   277
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   278
        do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   279
        doWithIndex:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   280
        pairWiseDo:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   281
        keysAndValuesDo:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   282
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   283
        withPriority:do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   284
        handle:do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   285
        on:do:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   286
        catch:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   287
        ignoreIn:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   288
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   289
        "/ newProcess
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   290
        fork:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   291
        ensure:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   292
        ifCurtailed:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   293
        valueOnUnwindDo:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   294
        valueNowOrOnUnwindDo:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   295
3977
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   296
        caseOf:
39fe23d7db13 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
   297
        caseOf:otherwise:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   298
    )
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   299
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   300
    "Created: / 08-09-2006 / 15:56:47 / cg"
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   301
!
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   302
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   303
debugSelectors
3235
6385bfe15842 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3231
diff changeset
   304
    "these are considered harmful if left in a deployed application:
6385bfe15842 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3231
diff changeset
   305
     selectors for debugging which open a debugger (unless haltSignal is
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   306
     caught or disabled, which end-user apps should do).
3235
6385bfe15842 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3231
diff changeset
   307
     These are optionally shown with another color (redish)"
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   308
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   309
    ^ #(
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   310
	halt halt:
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   311
    )
3235
6385bfe15842 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3231
diff changeset
   312
6385bfe15842 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3231
diff changeset
   313
    "Modified (comment): / 27-07-2013 / 11:45:07 / cg"
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   314
!
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   315
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   316
errorRaisingSelectors
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   317
    "these are error raisers.
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   318
     These are optionally shown with another color (red)"
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   319
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   320
    ^ #(
4272
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   321
        error error: error:mayProceed: proceedableError:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   322
        raise raiseRequest:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   323
        raiseErrorString: raiseRequestErrorString:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   324
        raiseWith: raiseRequestWith:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   325
        raiseWith:errorString: raiseRequestWith:errorString:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   326
        subclassResponsibility
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   327
        obsoleteMethodWarning obsoleteMethodWarning:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   328
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   329
        shouldNeverBeReached shouldNeverBeSent 
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   330
        shouldNotImplement shouldImplement
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   331
        subscriptBoundsError typeCheckError
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   332
        
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   333
        elementBoundsError errorInvalidFormat
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   334
        elementNotCharacter elementNotInteger
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   335
        errorKeyNotFound: errorNotFound errorNotFound:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   336
        indexNotInteger indexNotInteger:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   337
        indexNotIntegerOrOutOfBounds:
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   338
        mustBeRectangle mustBeString notIndexed
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   339
        notYetImplemented primitiveFailed
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   340
        
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   341
    )
4272
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   342
78ea887ddeb6 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
   343
    "Modified: / 28-05-2018 / 15:02:43 / Claus Gittinger"
3342
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   344
!
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   345
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   346
isControlFlowSelector:aSelector
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   347
    "these are considered wellknown, builtin selectors of very common
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   348
     control flow constructs. Correspond to syntax or special forms in other
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   349
     languages. These are optionally shown with another color (blue)"
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   350
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   351
    (self controlFlowSelectors includesIdentical:aSelector) ifTrue:[^ true].
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   352
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   353
    true "((aSelector startsWith:'with') or:[ aSelector startsWith:'all'])" ifTrue:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   354
	((aSelector endsWith:'do:') or:[ aSelector endsWith:'Do:']) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   355
	    ^ true
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   356
	]
3342
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   357
    ].
d7aec03dc509 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3264
diff changeset
   358
    ^ false.
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   359
! !
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   360
3732
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   361
!AbstractSyntaxHighlighter class methodsFor:'queries'!
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   362
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   363
isAbstract
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   364
    ^ self == AbstractSyntaxHighlighter
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   365
! !
afcdb234bf38 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3675
diff changeset
   366
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   367
!AbstractSyntaxHighlighter class methodsFor:'utilities'!
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   368
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   369
mark:sourceText from:pos1 to:pos2 withAddedEmphasis:addedEmphasis
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   370
    sourceText emphasisFrom:pos1 to:pos2 add:addedEmphasis
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   371
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   372
    "Created: / 01-06-2012 / 21:43:36 / cg"
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   373
!
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   374
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   375
mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:clrIn
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   376
    self mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:clrIn font:nil
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   377
!
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   378
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   379
mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:clrIn font:fontIn
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   380
    "all positions are 1-based"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   381
    
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   382
    |e p2 clr|
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   383
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   384
    (clrIn isNil or:[clrIn = Color black]) ifTrue:[
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   385
        e := fontEmp
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   386
    ] ifFalse:[
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   387
        clr := clrIn onDevice:Screen current.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   388
        fontEmp isNil ifTrue:[
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   389
            e := (#color->clr)
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   390
        ] ifFalse:[
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   391
            e := Text addEmphasis:fontEmp to:(#color->clr).
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   392
        ]
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   393
    ].
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   394
    fontIn notNil ifTrue:[
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   395
        e := Text addEmphasis:e to:(#font->fontIn)
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   396
    ].
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   397
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   398
    (p2 := pos2) isNil ifTrue:[
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   399
        p2 := sourceText size
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   400
    ] ifFalse:[
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   401
        p2 := p2 min:sourceText size
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   402
    ].
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   403
    sourceText emphasizeFrom:pos1 to:p2 with:e
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   404
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   405
    "Created: / 01-06-2012 / 21:42:41 / cg"
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   406
    "Modified (comment): / 21-10-2017 / 14:24:20 / cg"
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   407
!
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   408
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   409
mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   410
    |e p2 clr fgClr|
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   411
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   412
    fgClr := fgClr1 ? fgClr2.
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   413
    (fgClr isNil or:[fgClr = Color black]) ifTrue:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   414
	e := fontEmp
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   415
    ] ifFalse:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   416
	clr := fgClr onDevice:Screen current.
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   417
	fontEmp isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   418
	    e := (#color->clr)
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   419
	] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   420
	    e := Text addEmphasis:fontEmp to:(#color->clr).
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   421
	]
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   422
    ].
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   423
    bgClr notNil ifTrue:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   424
	e := Text addEmphasis:(#backgroundColor->bgClr) to:e.
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   425
    ].
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   426
    (p2 := pos2) isNil ifTrue:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   427
	p2 := sourceText size
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   428
    ] ifFalse:[
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   429
	p2 := p2 min:sourceText size
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   430
    ].
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   431
    sourceText emphasizeFrom:pos1 to:p2 with:e
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   432
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   433
    "Created: / 01-06-2012 / 21:44:17 / cg"
3561
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   434
!
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   435
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   436
mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp ifNil:fontEmp2 color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   437
    |e p2 clr fgClr|
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   438
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   439
    fgClr := fgClr1 ? fgClr2.
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   440
    (fgClr isNil or:[fgClr = Color black]) ifTrue:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   441
        e := fontEmp ? fontEmp2
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   442
    ] ifFalse:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   443
        clr := fgClr onDevice:Screen current.
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   444
        (fontEmp ? fontEmp2) isNil ifTrue:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   445
            e := (#color->clr)
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   446
        ] ifFalse:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   447
            e := Text addEmphasis:(fontEmp ? fontEmp2) to:(#color->clr).
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   448
        ]
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   449
    ].
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   450
    bgClr notNil ifTrue:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   451
        e := Text addEmphasis:(#backgroundColor->bgClr) to:e.
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   452
    ].
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   453
    (p2 := pos2) isNil ifTrue:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   454
        p2 := sourceText size
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   455
    ] ifFalse:[
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   456
        p2 := p2 min:sourceText size
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   457
    ].
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   458
    sourceText emphasizeFrom:pos1 to:p2 with:e
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   459
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   460
    "Created: / 01-06-2012 / 21:44:17 / cg"
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   461
! !
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   462
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   463
!AbstractSyntaxHighlighter methodsFor:'accessing'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   464
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   465
fetchHeavilyUsedPreferenceValues
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   466
    preferences isNil ifTrue:[
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   467
        commentColor :=  commentEmphasis := commentFont := nil.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   468
        constantColor := constantEmphasis := nil.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   469
        ^ self.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   470
    ].
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   471
    
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   472
    commentColor := preferences commentColor.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   473
    commentEmphasis := preferences commentEmphasis.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   474
    commentFont := preferences commentFont.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   475
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   476
    constantColor := preferences constantColor.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   477
    constantEmphasis := preferences constantEmphasis.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   478
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   479
    "Created: / 21-10-2017 / 14:13:33 / cg"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   480
!
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   481
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   482
method:aMethod
2525
f08c56018d9b lifted the method instvar
Claus Gittinger <cg@exept.de>
parents: 2506
diff changeset
   483
    "the original method, if known (for subclasses which can make use of it)"
f08c56018d9b lifted the method instvar
Claus Gittinger <cg@exept.de>
parents: 2506
diff changeset
   484
f08c56018d9b lifted the method instvar
Claus Gittinger <cg@exept.de>
parents: 2506
diff changeset
   485
    method := aMethod.
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   486
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   487
    "Created: / 28-04-2010 / 13:15:33 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   488
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   489
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   490
preferences:aUserPreferencesInstance
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   491
    preferences := aUserPreferencesInstance.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   492
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   493
    fullSelectorCheck := preferences fullSelectorCheck.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   494
    self fetchHeavilyUsedPreferenceValues.
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   495
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   496
    "Modified: / 21-10-2017 / 14:20:06 / cg"
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   497
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   498
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   499
sourceText
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   500
    "retrieve the updated source text after the highlighting process"
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   501
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   502
    ^ sourceText
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   503
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
    "Created: / 31.3.1998 / 11:49:05 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   505
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   506
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   507
sourceText:aString
3599
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   508
    "this text will be updated by the highlighting process"
a999663bd83f some code cleanup
Claus Gittinger <cg@exept.de>
parents: 3561
diff changeset
   509
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   510
    sourceText := aString.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   511
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   512
    "Created: / 31-03-1998 / 11:49:05 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
    "Modified: / 28-04-2010 / 13:22:27 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   514
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   515
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   516
!AbstractSyntaxHighlighter methodsFor:'api highlighting'!
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   517
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   518
formatExpression:aString in:aClass
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   519
    "format (recolor) an expression in a given class.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   520
     Return the text containing font changes and color information."
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   521
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   522
    |tree text|
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   523
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   524
    aString isNil ifTrue:[^ nil].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   525
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   526
    self ignoreErrors:true.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   527
    self ignoreWarnings:true.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   528
    self sourceText:(text := aString string asText).
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   529
    "/ use an array here - this can be changed much faster using #at:put:
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   530
    text emphasisCollection:(Array new:aString size).
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   531
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   532
    self nextToken.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   533
    tree := self expression.
4578
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   534
    tree notNil ifTrue:[
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   535
        "/ now, convert the emphasis-array to a runArray
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   536
        text emphasisCollection:(text emphasis asRunArray).
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   537
4578
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   538
        tree == #Error ifTrue:[
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   539
            ^ self class colorize:text forErrorAtPosition:(self sourceStream position) withOriginal:aString.
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   540
        ].
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   541
    ].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   542
    ^ text
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   543
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   544
    "
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   545
     self
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   546
        formatExpression:'(1 + 2) max:5'
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   547
        in:UndefinedObject
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   548
    "
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   549
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   550
    "Modified: / 7.4.1998 / 09:57:19 / cg"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   551
    "Created: / 9.4.1998 / 16:57:16 / cg"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   552
!
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   553
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   554
formatMethod:methodOrNil source:aString in:aClass using:preferencesOrNil
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   555
    "format (recolor) a method in a given class.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   556
     Return the text containing font changes and color information."
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   557
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   558
    |tree newText|
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   559
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   560
    aString isNil ifTrue:[^ nil].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   561
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   562
    Error handle:[:ex |
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   563
        "/ Transcript showCR:ex description.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   564
        "/ self breakPoint:#cg.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   565
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   566
        (ParseError handles:ex) ifFalse:[
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   567
            ex creator isHandled ifTrue:[
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   568
                "/ Transcript showCR:'handled' .
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   569
                ex reject.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   570
            ].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   571
            "Parse error may happen when re-formatting incomplete code while editing"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   572
"/            ('SyntaxHighlighter [info]: error during highlight: ' , ex description) infoPrintCR.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   573
            "/ ex suspendedContext fullPrintAll.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   574
        ].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   575
        ^ self class colorize:(newText ? aString) forErrorAtPosition:(self sourceStream position) withOriginal:aString
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   576
    ] do:[
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   577
        |sourceString|
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   578
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   579
        sourceString := aString string.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   580
        source := sourceString readStream.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   581
        newText := sourceString asUnicode16String asText.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   582
        "/ use an array here (instead of the RunArray) - this can be changed much faster using #at:put:
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   583
        newText emphasisCollection:(Array new:sourceString size).
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   584
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   585
        self method:methodOrNil.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   586
        preferencesOrNil notNil ifTrue:[self preferences:preferencesOrNil].
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   587
        "/ self ignoreErrors:true.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   588
        self ignoreWarnings:true.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   589
        self sourceText:newText.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   590
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   591
        tree := self parseMethod.
4578
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   592
        tree notNil ifTrue:[
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   593
            newText := self sourceText.  "/ might have changed identity
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   594
            "/ now, convert the emphasis-array to a runArray
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   595
            newText emphasisCollection:(newText emphasis asRunArray).
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   596
4578
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   597
            tree == #Error ifTrue:[
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   598
                ^ self class colorize:newText forErrorAtPosition:source position withOriginal:aString.
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   599
            ].
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   600
            self postProcessTree:tree forText:newText
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   601
        ].    
4568
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   602
        ^ newText
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   603
    ]
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   604
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   605
    "
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   606
     self
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   607
        formatMethod:'foo
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   608
    ^ self bar:''hello''.
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   609
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   610
    ' , (Character doubleQuote asString) , 'some comment' , (Character doubleQuote asString) , '
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   611
'
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   612
        in:UndefinedObject
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   613
    "
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   614
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   615
    "Created: / 28-04-2010 / 13:01:42 / cg"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   616
    "Modified: / 05-07-2011 / 11:22:20 / cg"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   617
    "Modified: / 22-12-2018 / 09:01:10 / Claus Gittinger"
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   618
! !
af6f467152a0 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4323
diff changeset
   619
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
!AbstractSyntaxHighlighter methodsFor:'error handling'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
parseError:aMessage position:position to:endPos
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
"/ Transcript showCR:aMessage.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
    super parseError:aMessage position:position to:endPos.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
4264
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   626
    self markErrorFrom:position to:endPos
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   628
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   629
showErrorMessage:aMessage position:pos
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   630
"/ Transcript showCR:aMessage.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
    super showErrorMessage:aMessage position:pos.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
4264
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   633
    self markErrorFrom:pos to:nil "/ to the end
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   634
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   635
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   636
syntaxError:aMessage position:position to:endPos
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   637
"/ Transcript showCR:aMessage.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   638
    super syntaxError:aMessage position:position to:endPos.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   639
4264
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   640
    self markErrorFrom:position to:endPos
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   641
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   642
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   643
warning:msg position:pos1 to:pos2
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   644
"/    self markUnknownIdentifierFrom:pos1 to:pos2
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   645
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   646
"/    self
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   647
"/        markFrom:pos1 to:pos2
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   648
"/        withEmphasis:nil color:UserPreferences current errorColor
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   649
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
    "Modified: / 25.9.1999 / 18:42:30 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
!AbstractSyntaxHighlighter methodsFor:'initialization'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
initialize
4114
a68e6f98cb02 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   656
    <modifier: #super> "must be called if redefined"
a68e6f98cb02 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   657
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
    super initialize.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
    foldConstants := false.
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   661
    self preferences:(UserPreferences current).
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
    "Created: / 31-03-1998 / 15:12:55 / cg"
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   664
    "Modified: / 21-10-2017 / 14:20:11 / cg"
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
!AbstractSyntaxHighlighter methodsFor:'misc'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   668
2817
b92ea70a5a9f added: #collectionEnumerationSelectors
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   669
collectionEnumerationSelectors
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   670
    ^ self class collectionEnumerationSelectors
2817
b92ea70a5a9f added: #collectionEnumerationSelectors
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   671
!
b92ea70a5a9f added: #collectionEnumerationSelectors
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   672
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   673
controlFlowSelectors
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   674
    ^ self class controlFlowSelectors
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   675
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   676
3228
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   677
debugSelectors
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   678
    ^ self class debugSelectors
3228
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   679
!
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   680
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
defineAsUndeclaredVariable:aName
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   682
    "redefined to NOT declare undefined vars"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   683
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
    ^ VariableNode globalNamed:aName
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
    "Modified: / 19.10.1998 / 19:38:12 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
3228
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   689
errorRaisingSelectors
3231
44b2709db25e class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3228
diff changeset
   690
    ^ self class errorRaisingSelectors
3228
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   691
!
e276f545e004 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3216
diff changeset
   692
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
isSyntaxHighlighter
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
    ^ true
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
plausibilityCheck:aNode
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
    "redefined to NOT do checks"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   700
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   701
    ^ nil
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
    "Modified: / 19.10.1998 / 19:38:12 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   704
    "Created: / 19.10.1998 / 19:57:18 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   706
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
!AbstractSyntaxHighlighter methodsFor:'syntax detection'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   709
markCommentFrom:pos1 to:pos2
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   710
    "all positions are 1-based"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   711
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   712
    self 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   713
        markFrom:pos1 to:pos2 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   714
        withEmphasis:commentEmphasis 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   715
        color:commentColor
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   716
        font:commentFont
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   717
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   718
    "
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   719
     UserPreferences current commentEmphasis
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   720
     UserPreferences current commentColor
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   721
    "
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   722
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   723
    "Modified (comment): / 21-10-2017 / 14:24:51 / cg"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   724
!
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   725
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   726
markConstantFrom:pos1 to:pos2
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   727
    self 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   728
        markFrom:pos1 to:pos2 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   729
        withEmphasis:constantEmphasis 
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   730
        color:constantColor
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   731
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   732
    "Created: / 31-03-1998 / 18:09:22 / cg"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   733
    "Modified: / 21-10-2017 / 14:15:48 / cg"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   734
!
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   735
4264
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   736
markErrorFrom:pos1 to:pos2
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   737
    self
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   738
        markFrom:pos1 to:pos2
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   739
        withEmphasis:nil color:UserPreferences current errorColor
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   740
!
eb7566800e38 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4229
diff changeset
   741
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   742
markFrom:pos1 length:len withEmphasis:fontEmp color:clrIn
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   743
    self markFrom:pos1 to:pos1+len-1 withEmphasis:fontEmp color:clrIn
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   744
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   745
    "Created: / 21-10-2017 / 14:47:46 / cg"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   746
!
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   747
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
markFrom:pos1 to:pos2 withAddedEmphasis:addedEmphasis
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   749
    self class
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   750
	mark:sourceText from:pos1 to:pos2 withAddedEmphasis:addedEmphasis
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
    "Created: / 15-01-2008 / 11:48:18 / cg"
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   755
markFrom:pos1 to:pos2 withEmphasis:fontEmp color:clrIn
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   756
    self class
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   757
	mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:clrIn
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
    "Created: / 31-03-1998 / 13:26:53 / cg"
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   760
    "Modified: / 01-06-2012 / 21:43:04 / cg"
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   761
!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   762
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   763
markFrom:pos1 to:pos2 withEmphasis:fontEmp color:clrIn font:fontInOrNil
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   764
    "all positions are 1-based"
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   765
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   766
    self class
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   767
        mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:clrIn font:fontInOrNil
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   768
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   769
    "Created: / 31-03-1998 / 13:26:53 / cg"
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   770
    "Modified: / 01-06-2012 / 21:43:04 / cg"
4202
b74cb013e847 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   771
    "Modified (comment): / 21-10-2017 / 14:24:47 / cg"
3352
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   772
!
42a5ad1adb52 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   773
2813
51e4b12f18dc added: #markFrom:to:withEmphasis:color:ifNil:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 2688
diff changeset
   774
markFrom:pos1 to:pos2 withEmphasis:fontEmp color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
2872
f992970ef1cd refactored mark code for reuse by other classes
Claus Gittinger <cg@exept.de>
parents: 2817
diff changeset
   775
    self class
3469
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   776
	mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
2813
51e4b12f18dc added: #markFrom:to:withEmphasis:color:ifNil:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 2688
diff changeset
   777
51e4b12f18dc added: #markFrom:to:withEmphasis:color:ifNil:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 2688
diff changeset
   778
    "Created: / 13-02-2012 / 11:48:09 / cg"
51e4b12f18dc added: #markFrom:to:withEmphasis:color:ifNil:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 2688
diff changeset
   779
!
51e4b12f18dc added: #markFrom:to:withEmphasis:color:ifNil:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 2688
diff changeset
   780
3561
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   781
markFrom:pos1 to:pos2 withEmphasis:fontEmp ifNil:fontEmp2 color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   782
    self class
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   783
        mark:sourceText from:pos1 to:pos2 withEmphasis:fontEmp ifNil:fontEmp2 color:fgClr1 ifNil:fgClr2 backgroundColor:bgClr
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   784
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   785
    "Created: / 13-02-2012 / 11:48:09 / cg"
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   786
!
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   787
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   788
markVariable:v
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
    |pos endPos|
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
    pos := tokenPosition.
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
    endPos := pos+tokenName size-1.
3189
5a4bb1727d08 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
   793
    self markVariable:v from:pos to:endPos assigned:false
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
2464
595ec0d9efa9 comment/format in: #markVariable:
Claus Gittinger <cg@exept.de>
parents: 2392
diff changeset
   795
    "Modified: / 30-11-2010 / 14:44:28 / cg"
4578
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   796
!
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   797
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   798
postProcessTree:tree forText:text
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   799
    "allows for additional checks to be done on the tree
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   800
     (checking arguments to a call-node in expecco, for example)"
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   801
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   802
    "/ intentionaly left blank here.
6a1d8da4191d #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4568
diff changeset
   803
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
! !
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
!AbstractSyntaxHighlighter class methodsFor:'documentation'!
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
2663
e94fe6b650ad changed: #controlFlowSelectors
Claus Gittinger <cg@exept.de>
parents: 2662
diff changeset
   808
version
3675
6a75a2fe7a83 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3599
diff changeset
   809
    ^ '$Header$'
2663
e94fe6b650ad changed: #controlFlowSelectors
Claus Gittinger <cg@exept.de>
parents: 2662
diff changeset
   810
!
e94fe6b650ad changed: #controlFlowSelectors
Claus Gittinger <cg@exept.de>
parents: 2662
diff changeset
   811
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
version_CVS
3675
6a75a2fe7a83 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3599
diff changeset
   813
    ^ '$Header$'
2506
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
   814
!
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
   815
3a8b4a11428e Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2464
diff changeset
   816
version_SVN
3189
5a4bb1727d08 class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
   817
    ^ '$ Id $'
2371
2348d09fb80e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
! !
3561
f04a8db1590f class: AbstractSyntaxHighlighter
Claus Gittinger <cg@exept.de>
parents: 3469
diff changeset
   819