MethodExplorer does not highlight definitions or references

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

MethodExplorer does not highlight definitions or references

Christoph J. Bachinger
Hi Folks,

I wonder why nobody is mention the lack of the highlighting of
definitions or references search in the MethodExplorer.

In Dolphin 5 after searching for a reference (or definition) of a
Message I got a ListBrowser with all the methods and clicking on it I
saw immediatly highlighted the place where the message was ): .

Do I miss the point or is any workaround (: .

regards
cjb


Reply | Threaded
Open this post in threaded view
|

Re: MethodExplorer does not highlight definitions or references

Andy Bower-3
Christoph

> I wonder why nobody is mention the lack of the highlighting of
> definitions or references search in the MethodExplorer.
>
> In Dolphin 5 after searching for a reference (or definition) of a
> Message I got a ListBrowser with all the methods and clicking on it I
> saw immediatly highlighted the place where the message was ): .
>
> Do I miss the point or is any workaround (: .

This appears to be a recently introduced bug. I have recordede it as
#2019.

Best regards

--
Andy Bower
Dolphin Support
www.object-arts.com


Reply | Threaded
Open this post in threaded view
|

Re: MethodExplorer does not highlight definitions or references

Christoph J. Bachinger
Andy,

>> I wonder why nobody is mention the lack of the highlighting of
>>  references search in the MethodExplorer.
>
> This appears to be a recently introduced bug. I have recorded it as
> #2019.

In class SmalltalkSystem the method
referencesMatching: aMethodSearch in: aBrowserEnvironment
lacks the
        search: aMethodSearch; message call.

I got a five-finger discount ;-) from
definitionsMatching: aMethodSearch in: aBrowserEnvironment .



referencesMatching: aMethodSearch in: aBrowserEnvironment
        ^(self selectMethods: aMethodSearch methodReferenceFilter in:
aBrowserEnvironment)
                label: ('References to <1p> in <2d>' expandMacrosWith: aMethodSearch
pattern
                                        with: aBrowserEnvironment);
                search: aMethodSearch;
                yourself


Now it works fine :).
Hopefully early enough

cjb