[Pharo-project] Turning _ into :=
Hi! Is there currently a strategy to turn _ into :=? Does it have to be done manually? I am working on a part of the system that contains _. Shall I post into PhaboInbox a path that turns this underscores into standard assignments? Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
FixUndescore package + invoking it. Stef On Jul 13, 2008, at 8:14 PM, Alexandre Bergel wrote:
Hi!
Is there currently a strategy to turn _ into :=? Does it have to be done manually? I am working on a part of the system that contains _. Shall I post into PhaboInbox a path that turns this underscores into standard assignments?
Cheers, Alexandre
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Ok, but I do not understand why are there still some _ in the image ? cheers, Alexandre On 13 Jul 2008, at 21:21, Stéphane Ducasse wrote:
FixUndescore package + invoking it.
Stef
On Jul 13, 2008, at 8:14 PM, Alexandre Bergel wrote:
Hi!
Is there currently a strategy to turn _ into :=? Does it have to be done manually? I am working on a part of the system that contains _. Shall I post into PhaboInbox a path that turns this underscores into standard assignments?
Cheers, Alexandre
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Where? Please keep in mind that simple things may not be obvious when you do not have atomic loading. Else we woudl recompile the complete image three years ago at least. Some packages could not be loaded once you applied the _ => := Then I do not run systematically the fixunderscore on the harvested code for exactly the same reason. Stef
Ok, but I do not understand why are there still some _ in the image ?
cheers, Alexandre
On 13 Jul 2008, at 21:21, Stéphane Ducasse wrote:
FixUndescore package + invoking it.
Stef
On Jul 13, 2008, at 8:14 PM, Alexandre Bergel wrote:
Hi!
Is there currently a strategy to turn _ into :=? Does it have to be done manually? I am working on a part of the system that contains _. Shall I post into PhaboInbox a path that turns this underscores into standard assignments?
Cheers, Alexandre
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Ok, but I do not understand why are there still some _ in the image ?
Some packages contain code with _ in class-side initialize methods. If you change these methods Monticello executes them. Unfortunately some of these methods are broken or can't be executed properly, so it is not possible to load the changed package. A quick and easy fix would be just to get rid of _ in all remaining other methods for now. Lukas -- Lukas Renggli http://www.lukas-renggli.ch
we should come up with a list of such methods and kill them either by fixing them or removing them. MVC got some of them. Stef On Jul 13, 2008, at 9:52 PM, Lukas Renggli wrote:
Ok, but I do not understand why are there still some _ in the image ?
Some packages contain code with _ in class-side initialize methods. If you change these methods Monticello executes them. Unfortunately some of these methods are broken or can't be executed properly, so it is not possible to load the changed package.
A quick and easy fix would be just to get rid of _ in all remaining other methods for now.
Lukas
-- Lukas Renggli http://www.lukas-renggli.ch
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
participants (4)
-
Alexandre Bergel -
Alexandre Bergel -
Lukas Renggli -
Stéphane Ducasse