Status: New
Owner: ----
New issue 3781 by
[hidden email]: Finder version 30 does not report
all selectors - 2 problems
http://code.google.com/p/pharo/issues/detail?id=3781Package Finder-BenjaminVanRyseghem.30.mcz
Two problems with the Finder UI.
Problem 1:
Using Selectors mode, if a class has the same method name for instances and
classes, Finder only lists the class entry.
Example: the HelpBrowser class has both an instance and class method
for 'open'.
Instance method:
open
"Open the receivers window"
self refresh.
window openInWorld.
and class method:
open
^self openOn: SystemHelp
Using Finder tool, type in 'open' in the box (set mode to Selectors).
Notice that only "HelpBrowser class" appears in the list. The "instance"
method (which would show up as HelpBrowser without the word "class" after
it) does not appear on the list.
Problem 2.
Same example, change mode from Selectors to Classes, and type "HelpBrowser"
in the box.
Notice now that only the instance method for 'open' appears. The class
method "open" does not appear.