[Pharo-project] Show categoy in implementors, senders.. etc
Hi Ben. I really miss the ability of seing the category in senders/implementors. Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc... So, together with Guille, waiting for the train, we hacked: FlatMessageListBrowser >> createColumnsFor: anItem ^ bindings at: anItem ifAbsentPut: [ {anItem realClass name. anItem selector asString, ' (' ,anItem category asString, ')'} ] Not sure if that's the place, but it would be nice to have :) Thanks -- Mariano http://marianopeck.wordpress.com
Yes yes originally we wanted to have the package name but it was too slow now with RPackage it should get fast enough. On Apr 20, 2012, at 5:48 PM, Mariano Martinez Peck wrote:
Hi Ben. I really miss the ability of seing the category in senders/implementors. Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc... So, together with Guille, waiting for the train, we hacked:
FlatMessageListBrowser >> createColumnsFor: anItem
^ bindings at: anItem ifAbsentPut: [ {anItem realClass name. anItem selector asString, ' (' ,anItem category asString, ')'} ]
Not sure if that's the place, but it would be nice to have :)
Thanks
-- Mariano http://marianopeck.wordpress.com
On Fri, Apr 20, 2012 at 9:41 PM, Stéphane Ducasse <stephane.ducasse@inria.fr
wrote:
Yes yes originally we wanted to have the package name but it was too slow now with RPackage it should get fast enough. On Apr 20, 2012, at 5:48 PM, Mariano Martinez Peck wrote:
Hi Ben. I really miss the ability of seing the category in senders/implementors. Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc...
Sorry stef when I said " Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc..." I wanted to mean category rather than package. (but sometimes the category means a package when you use * hahaha)
So, together with Guille, waiting for the train, we hacked:
FlatMessageListBrowser >> createColumnsFor: anItem
^ bindings at: anItem ifAbsentPut: [ {anItem realClass name. anItem selector asString, ' (' ,anItem category asString, ')'} ]
Not sure if that's the place, but it would be nice to have :)
Thanks
-- Mariano http://marianopeck.wordpress.com
-- Mariano http://marianopeck.wordpress.com
so we want both :) On Apr 20, 2012, at 9:43 PM, Mariano Martinez Peck wrote:
On Fri, Apr 20, 2012 at 9:41 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote: Yes yes originally we wanted to have the package name but it was too slow now with RPackage it should get fast enough. On Apr 20, 2012, at 5:48 PM, Mariano Martinez Peck wrote:
Hi Ben. I really miss the ability of seing the category in senders/implementors. Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc...
Sorry stef when I said " Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc..." I wanted to mean category rather than package. (but sometimes the category means a package when you use * hahaha)
So, together with Guille, waiting for the train, we hacked:
FlatMessageListBrowser >> createColumnsFor: anItem
^ bindings at: anItem ifAbsentPut: [ {anItem realClass name. anItem selector asString, ' (' ,anItem category asString, ')'} ]
Not sure if that's the place, but it would be nice to have :)
Thanks
-- Mariano http://marianopeck.wordpress.com
-- Mariano http://marianopeck.wordpress.com
Ben, can we add this? On Sat, Apr 21, 2012 at 10:18 AM, Stéphane Ducasse < stephane.ducasse@inria.fr> wrote:
so we want both :)
On Apr 20, 2012, at 9:43 PM, Mariano Martinez Peck wrote:
On Fri, Apr 20, 2012 at 9:41 PM, Stéphane Ducasse <
stephane.ducasse@inria.fr> wrote:
Yes yes originally we wanted to have the package name but it was too slow now with RPackage it should get fast enough. On Apr 20, 2012, at 5:48 PM, Mariano Martinez Peck wrote:
Hi Ben. I really miss the ability of seing the category in senders/implementors. Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc...
Sorry stef when I said " Lots of time I want to see for example if all implementation or senders are in the correct package or not, etc..." I wanted to mean category rather than package. (but sometimes the category means a package when you use * hahaha)
So, together with Guille, waiting for the train, we hacked:
FlatMessageListBrowser >> createColumnsFor: anItem
^ bindings at: anItem ifAbsentPut: [ {anItem realClass name. anItem selector asString, ' (' ,anItem category asString, ')'} ]
Not sure if that's the place, but it would be nice to have :)
Thanks
-- Mariano http://marianopeck.wordpress.com
-- Mariano http://marianopeck.wordpress.com
-- Mariano http://marianopeck.wordpress.com
participants (2)
-
Mariano Martinez Peck -
Stéphane Ducasse