Creating *many* files.

Markus Fritsche Fritsche.Markus at gmx.net
Wed Nov 20 15:53:04 UTC 2002


Andreas.Raab at gmx.de wrote:

>Ah, but you see this is a conceptional mistake - texCoordS and texCoords
>should have never be named that way and if selectors were case insensitive (as
>they should) I would have never made the mistake of naming the methods that
>similar.
>  
>

| s i | s _ Set new. i _ 0.
Smalltalk allClassesDo: [ :clz |
    clz methodDict keysDo: [ :sel |
        s add: (clz name, '-', (sel asUppercase)).
        i _ i + 1.
    ].
    Transcript show: clz; cr. "Show progress"
].
i - (s size).

Evaluates to '2'. So, there is another of this pair, or do I an 
off-by-one mistake?

-- 
http://reauktion.de/archer/





More information about the Squeak-dev mailing list