Aug. 15, 2013
7:35 a.m.
On Aug 14, 2013, at 9:26 PM, Camillo Bruni <camillobruni@gmail.com> wrote:
ah looks very nice, indeed much more powerful than my hack. If you have time, switch to real regular expressions, because things like
add: (MethodCategorizationRule whenSelectorMatches: 'as*' categorizeIn: #converting); will easily produce false positives. For instance #assert: will end up in converting, which is not what you want ;) => /as[A-Z][a-zA-Z]*/ for instance does a much better job
Ok thanks for the idea. I will.