changed: #controlFlowSelectors
authorClaus Gittinger <cg@exept.de>
Thu, 11 Aug 2011 10:40:53 +0200
changeset 2660 1f8eccda27db
parent 2659 315e8570246e
child 2661 ee815dfc5bde
changed: #controlFlowSelectors
AbstractSyntaxHighlighter.st
--- a/AbstractSyntaxHighlighter.st	Wed Aug 10 20:03:55 2011 +0200
+++ b/AbstractSyntaxHighlighter.st	Thu Aug 11 10:40:53 2011 +0200
@@ -343,6 +343,10 @@
 !AbstractSyntaxHighlighter methodsFor:'misc'!
 
 controlFlowSelectors
+    "these are considered wellknown, builtin selectors of very common
+     control flow constructs. Correspond to syntax or special forms in other
+     languages. These are optionally shown with another color (blue)"
+
     ^ #(
         ifTrue:
         ifFalse:
@@ -363,7 +367,15 @@
         doUntil:
 
         do:
+        doWithIndex:
+        pairWiseDo:
         keysAndValuesDo:
+
+        withPriority:do:
+        handle:do:
+        "/ newProcess
+        fork:
+        ensure:
     )
 
     "Created: / 08-09-2006 / 15:56:47 / cg"
@@ -436,7 +448,7 @@
 !AbstractSyntaxHighlighter class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/AbstractSyntaxHighlighter.st,v 1.8 2011-07-20 15:40:45 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/AbstractSyntaxHighlighter.st,v 1.9 2011-08-11 08:40:53 cg Exp $'
 !
 
 version_SVN