ContextPart >> #methodSelector

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

ContextPart >> #methodSelector

Frank Shearar-3
ChangeRecord >> #methodSelector messes with the searching, but it
looks like the sole usage of ContextPart's one is, oddly enough,
ColoredCodeStream class >> #initialize:

        #( (temporaryVariable blue italic)
                (methodArgument blue normal)
                (methodSelector black bold) "<-- here we go"
                (blockArgument red normal)
                (comment brown normal)
                (variable magenta normal)
                (literal orange normal)
                (keyword darkGray bold)
                (prefixKeyword veryDarkGray bold)
                (setOrReturn black bold)) do:
                        [:aTriplet |
                                ST80ColorTable at: aTriplet first put: aTriplet allButFirst]

which is easily dealt with, using selector instead.

Right?

frank