> On 1 Jul 2019, at 09:59, Marcus Denker <[email protected]> wrote:
>
>
>
>> On 1 Jul 2019, at 08:45, Marcus Denker <[email protected]> wrote:
>>
>> For the ones I add for other to do I put the “Easy” tag and add them to this
>> GitHub project (kanban board):
>>
>> https://github.com/orgs/pharo-project/projects/8
>>
>
And two issue for someone to do:
- allBehaviorsDo: can now use the cached allBehaviors
https://github.com/pharo-project/pharo/issues/3726
simple, but quite some impact (we should of course refactor all the senders of
allBehaviorsDo: later
as they now can be transformed to use collection methods and be even faster
then do:…)
and a slightly harder one:
add #whichMethodsReferTo:
https://github.com/pharo-project/pharo/issues/3727
nearly all clients of thoroughWhichSelectorsReferTo: are interested in the
methods, not the selector.
we should add #whichMethodsReferTo: and rewrite the clients to use that instead.
Marcus