Issue 7302 in pharo: the emergency evaluator revert functionality does not work

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

Issue 7302 in pharo: the emergency evaluator revert functionality does not work

pharo
Status: Accepted
Owner: [hidden email]
Labels: Type-Bug

New issue 7302 by [hidden email]: the emergency evaluator revert  
functionality does not work
http://code.google.com/p/pharo/issues/detail?id=7302

Apparently the last modified method is not correct.



_______________________________________________
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 7302 in pharo: the emergency evaluator revert functionality does not work

pharo

Comment #1 on issue 7302 by [hidden email]: the emergency evaluator  
revert functionality does not work
http://code.google.com/p/pharo/issues/detail?id=7302

I thought that it was that RecentMessageList does not register to  
SystemAnnouncement anymore.

startUp: aBoolean

        self ensureSingletonExistence

ensureSingletonExistence

        UniqueInstance ifNil: [ UniqueInstance := self basicNew
                                                                                initialize;
                                                                                yourself ].

but it does it:

SystemAnnouncer uniqueInstance weak
                "Class"
                on: ClassAdded send: #aClassHasBeenAdded: to: self;
                on: ClassCommented send: #aClassHasBeenCommented: to: self;
                on: ClassModifiedClassDefinition send: #aClassHasBeenModified: to: self;
                on: ClassRecategorized send: #aClassHasBeenRecategorized: to: self;
                on: ClassRemoved send: #aClassHasBeenRemoved: to: self;
                on: ClassRenamed send: #aClassHasBeenRenamed: to: self;
                on: ClassReorganized send: #aClassHasBeenReorganized: to: self;
                "Method"
                on: MethodAdded send: #aMethodHasBeenAdded: to: self;
                on: MethodModified send: #aMethodHasBeenModified: to: self;
                on: MethodRecategorized send: #aMethodHasBeenRecategorized: to: self;
                on: MethodRemoved send: #aMethodHasBeenRemoved: to: self

So we should check in
revertLastMethodSubmission



_______________________________________________
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 7302 in pharo: the emergency evaluator revert functionality does not work

pharo
Updates:
        Status: FixToInclude
        Labels: Milestone-2.0

Comment #2 on issue 7302 by [hidden email]: the emergency evaluator  
revert functionality does not work
http://code.google.com/p/pharo/issues/detail?id=7302

RecentMessageList uniqueInstance registerToAnnouncements


_______________________________________________
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 7302 in pharo: the emergency evaluator revert functionality does not work

pharo
Updates:
        Status: Integrated

Comment #3 on issue 7302 by [hidden email]: the emergency evaluator  
revert functionality does not work
http://code.google.com/p/pharo/issues/detail?id=7302

so if this is fix to include I only put the postscript.




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