Issue 4550 in pharo: methodSymbol is a bad name for selector

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

Issue 4550 in pharo: methodSymbol is a bad name for selector

pharo
Status: Accepted
Owner: [hidden email]
Labels: Milestone-1.4

New issue 4550 by [hidden email]: methodSymbol is a bad name for  
selector
http://code.google.com/p/pharo/issues/detail?id=4550

We should replace all the methodSymbol uses by selector


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4550 in pharo: methodSymbol is a bad name for selector

pharo

Comment #1 on issue 4550 by [hidden email]: methodSymbol is a bad  
name for selector
http://code.google.com/p/pharo/issues/detail?id=4550

some references got fixed (already in the 14069)


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4550 in pharo: methodSymbol is a bad name for selector

pharo

Comment #2 on issue 4550 by [hidden email]: methodSymbol is a bad  
name for selector
http://code.google.com/p/pharo/issues/detail?id=4550

There is only one left :)
All the other ones are in code that should get removed. :)

contents: aString notifying: aController
        "Accept the string as new source for the current method, and make certain  
the annotation pane gets invalidated"

        | existingSelector existingClass superResult newSelector |
        existingSelector := self selectedMessageName.
        existingClass := self selectedClassOrMetaClass.

        superResult := super contents: aString notifying: aController.
        superResult ifTrue:  "succeeded"
                [newSelector := existingClass parserClass new parseSelector: aString.
                newSelector ~= existingSelector
                        ifTrue:   "Selector changed -- maybe an addition"
                                [self reformulateList.
                                self changed: #messageList.
                                self messageList doWithIndex:
                                        [:aMethodReference :anIndex |
                                                (aMethodReference actualClass == existingClass and:
                                                                        [aMethodReference selector == newSelector])


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4550 in pharo: methodSymbol is a bad name for selector

pharo
Updates:
        Status: closed

Comment #3 on issue 4550 by [hidden email]: methodSymbol is a bad  
name for selector
http://code.google.com/p/pharo/issues/detail?id=4550

in 14112


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker