class: SyntaxHighlighter
authorClaus Gittinger <cg@exept.de>
Sun, 01 Feb 2015 22:53:27 +0100
changeset 3560 b0c86d7cb860
parent 3559 61d213bd4a32
child 3561 f04a8db1590f
class: SyntaxHighlighter changed: #markAssignedClassVariableIdentifierFrom:to: #markAssignedGlobalIdentifierFrom:to: #markAssignedInstVarIdentifierFrom:to: #markAssignedPoolVariableIdentifierFrom:to:
SyntaxHighlighter.st
--- a/SyntaxHighlighter.st	Sat Jan 31 16:05:54 2015 +0100
+++ b/SyntaxHighlighter.st	Sun Feb 01 22:53:27 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libcomp' }"
 
+"{ NameSpace: Smalltalk }"
+
 AbstractSyntaxHighlighter subclass:#SyntaxHighlighter
 	instanceVariableNames:'currentSuperclasses currentSubclasses
 		cachedLocalIdentifierEmphasis cachedLocalIdentifierColor
@@ -190,9 +192,8 @@
 markAssignedClassVariableIdentifierFrom:pos1 to:pos2
     self 
         markFrom:pos1 to:pos2 
-        withEmphasis:(preferences classVariableIdentifierEmphasis) 
-        color:(preferences sideEffectAssignmentColor)
-        ifNil:(preferences classVariableIdentifierColor)
+        withEmphasis:(preferences sideEffectAssignmentEmphasis) ifNil:(preferences classVariableIdentifierEmphasis)
+        color:(preferences sideEffectAssignmentColor) ifNil:(preferences classVariableIdentifierColor)
         backgroundColor:(preferences sideEffectAssignmentBackgroundColor)
 
     "Created: / 13-02-2012 / 11:49:59 / cg"
@@ -201,9 +202,8 @@
 markAssignedGlobalIdentifierFrom:pos1 to:pos2
     self 
         markFrom:pos1 to:pos2 
-        withEmphasis:(preferences globalIdentifierEmphasis) 
-        color:(preferences sideEffectAssignmentColor)
-        ifNil:(preferences globalIdentifierColor)
+        withEmphasis:(preferences sideEffectAssignmentEmphasis) ifNil:(preferences globalIdentifierEmphasis)
+        color:(preferences sideEffectAssignmentColor) ifNil:(preferences globalIdentifierColor)
         backgroundColor:(preferences sideEffectAssignmentBackgroundColor)
 
     "Modified: / 31-03-1998 / 18:02:14 / cg"
@@ -219,9 +219,8 @@
 markAssignedInstVarIdentifierFrom:pos1 to:pos2
     self 
         markFrom:pos1 to:pos2 
-        withEmphasis:(preferences instVarIdentifierEmphasis) 
-        color:(preferences sideEffectAssignmentColor)
-        ifNil:(preferences instVarIdentifierColor)
+        withEmphasis:(preferences sideEffectAssignmentEmphasis) ifNil:(preferences instVarIdentifierEmphasis)
+        color:(preferences sideEffectAssignmentColor) ifNil:(preferences instVarIdentifierColor)
         backgroundColor:(preferences sideEffectAssignmentBackgroundColor)
 
     "Created: / 13-02-2012 / 11:50:19 / cg"
@@ -230,9 +229,8 @@
 markAssignedPoolVariableIdentifierFrom:pos1 to:pos2
     self 
         markFrom:pos1 to:pos2 
-        withEmphasis:(preferences poolVariableIdentifierEmphasis) 
-        color:(preferences sideEffectAssignmentColor)
-        ifNil:(preferences poolVariableIdentifierColor)
+        withEmphasis:(preferences sideEffectAssignmentEmphasis) ifNil:(preferences poolVariableIdentifierEmphasis)
+        color:(preferences sideEffectAssignmentColor) ifNil:(preferences poolVariableIdentifierColor)
         backgroundColor:(preferences sideEffectAssignmentBackgroundColor)
 
     "Created: / 13-02-2012 / 11:49:14 / cg"
@@ -712,10 +710,10 @@
 !SyntaxHighlighter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/SyntaxHighlighter.st,v 1.76 2014-02-01 23:14:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/SyntaxHighlighter.st,v 1.77 2015-02-01 21:53:27 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/SyntaxHighlighter.st,v 1.76 2014-02-01 23:14:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/SyntaxHighlighter.st,v 1.77 2015-02-01 21:53:27 cg Exp $'
 ! !