SyntaxHighlighter.st
changeset 4668 ddbc1fbebe8e
parent 4643 e305b814a348
child 4723 524785227024
equal deleted inserted replaced
4667:243c16a9e51a 4668:ddbc1fbebe8e
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "
     1 "
     4  COPYRIGHT (c) 1998 by eXept Software AG
     2  COPYRIGHT (c) 1998 by eXept Software AG
     5               All Rights Reserved
     3               All Rights Reserved
     6 
     4 
     7  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
    16 "{ NameSpace: Smalltalk }"
    14 "{ NameSpace: Smalltalk }"
    17 
    15 
    18 AbstractSyntaxHighlighter subclass:#SyntaxHighlighter
    16 AbstractSyntaxHighlighter subclass:#SyntaxHighlighter
    19 	instanceVariableNames:'currentSuperclasses currentSubclasses
    17 	instanceVariableNames:'currentSuperclasses currentSubclasses
    20 		cachedLocalIdentifierEmphasis cachedLocalIdentifierColor
    18 		cachedLocalIdentifierEmphasis cachedLocalIdentifierColor
    21 		cachedStringEmphasis cachedStringColor'
    19 		cachedStringEmphasis cachedStringColor unknownVariableResolver'
    22 	classVariableNames:''
    20 	classVariableNames:''
    23 	poolDictionaries:''
    21 	poolDictionaries:''
    24 	category:'System-Compiler'
    22 	category:'System-Compiler'
    25 !
    23 !
    26 
    24 
    72 
    70 
    73 codeAspectMethod
    71 codeAspectMethod
    74     ^ #method
    72     ^ #method
    75 
    73 
    76     "Created: / 27-07-2012 / 22:01:42 / cg"
    74     "Created: / 27-07-2012 / 22:01:42 / cg"
       
    75 ! !
       
    76 
       
    77 !SyntaxHighlighter methodsFor:'accessing'!
       
    78 
       
    79 unknownVariableResolver
       
    80     ^ unknownVariableResolver
    77 ! !
    81 ! !
    78 
    82 
    79 !SyntaxHighlighter methodsFor:'initialization'!
    83 !SyntaxHighlighter methodsFor:'initialization'!
    80 
    84 
    81 initialize
    85 initialize