[Pharo-project] ByteArray storeOn: conflict
Hi lukas apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts. Stef
I'm introducing it manually and also fixing printOn: to have #[12 3] printString #[12 3] Since ByteArray isSelfEvaluating -> true which is correct :) On Feb 1, 2009, at 8:16 PM, Stéphane Ducasse wrote:
Hi lukas
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
Stef
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there. Lukas -- Lukas Renggli http://www.lukas-renggli.ch
Me neither :) This is strange when I do a diff I see different character and code changed. Stef On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
#[1 2 3 ] -> #[1 2 3] but #(1 #[2] 3) an Array(1 #[2] 3) :( I will release first and fix after if I can On Feb 1, 2009, at 10:37 PM, Stéphane Ducasse wrote:
Me neither :) This is strange when I do a diff I see different character and code changed.
Stef
On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Ahh, ByteArray needs to answer #isLiteral ^ true. Lukas On Sun, Feb 1, 2009 at 10:42 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
#[1 2 3 ] -> #[1 2 3]
but #(1 #[2] 3) an Array(1 #[2] 3) :(
I will release first and fix after if I can
On Feb 1, 2009, at 10:37 PM, Stéphane Ducasse wrote:
Me neither :) This is strange when I do a diff I see different character and code changed.
Stef
On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
_______________________________________________ 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
-- Lukas Renggli http://www.lukas-renggli.ch
why #[1 2 3] isLiteral -> false On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
ByteArray should implement #isLiteral and return true so that Arrays prints correctly. Lukas On Sun, Feb 1, 2009 at 10:43 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
why
#[1 2 3] isLiteral
-> false
On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- Lukas Renggli http://www.lukas-renggli.ch
Yeap will add that in the next release. It was too simple and I should have waited a bit :) Stef On Feb 1, 2009, at 10:43 PM, Lukas Renggli wrote:
Ahh, ByteArray needs to answer #isLiteral ^ true.
Lukas
On Sun, Feb 1, 2009 at 10:42 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
#[1 2 3 ] -> #[1 2 3]
but #(1 #[2] 3) an Array(1 #[2] 3) :(
I will release first and fix after if I can
On Feb 1, 2009, at 10:37 PM, Stéphane Ducasse wrote:
Me neither :) This is strange when I do a diff I see different character and code changed.
Stef
On Feb 1, 2009, at 10:33 PM, Lukas Renggli wrote:
apparently there is a conflict on the method initialize of the character class as well as in atRandom. Can you check because I do not understand why I should get these conflicts.
I do not understand, I did not change anything there.
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
_______________________________________________ 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
-- 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 (2)
-
Lukas Renggli -
Stéphane Ducasse