String>>contentsAsMethod

View: New views
3 Messages — Rating Filter:   Alert me  

String>>contentsAsMethod

by Rob Rothwell-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The Aida 5.6 String>>contentsAsMethod should close the method with a ")" instead of a "]"...

contentsAsMethod
"return a body of method with a literal array with contents of that string"
| input output |
input := self readStream.
output := WriteStream with: String new.
output nextPutAll: '^#('.
[input atEnd] whileFalse: [output nextPutAll: input next asInteger asString; nextPut: $ ].
output nextPutAll: ')'.
^output contents

Rob

_______________________________________________
Aida mailing list
Aida@...
http://lists.aidaweb.si/mailman/listinfo/aida

Re: String>>contentsAsMethod

by Nicolas Petton :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

For Squeak, this method is replaced by a new one which works better.
it's in the squeaksource repository (http://mc.bioskop.fr).

Cheers!

Nico
--
Nicolas Petton
http://nico.bioskop.fr
            ___
          ooooooo
         OOOOOOOOO
        |Smalltalk|
         OOOOOOOOO
          ooooooo
           \   /
            [|]
--------------------------------
Ma clé PGP est disponible ici :
http://nico.bioskop.fr/pgp-key.html


_______________________________________________
Aida mailing list
Aida@...
http://lists.aidaweb.si/mailman/listinfo/aida

signature.asc (196 bytes) Download Attachment

Re: String>>contentsAsMethod

by Rob Rothwell-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Is this a "different" package than the one you see with the Universe Browser?  Is it more "up-to-date?"

Rob 

On Sun, Mar 16, 2008 at 10:39 AM, Nicolas Petton <petton.nicolas@...> wrote:
Hi,

For Squeak, this method is replaced by a new one which works better.
it's in the squeaksource repository (http://mc.bioskop.fr).

Cheers!

Nico
--
Nicolas Petton
http://nico.bioskop.fr
           ___
         ooooooo
        OOOOOOOOO
       |Smalltalk|
        OOOOOOOOO
         ooooooo
          \   /
           [|]
--------------------------------
Ma clé PGP est disponible ici :
http://nico.bioskop.fr/pgp-key.html



--
The foolish reject what they see, not what they think; the wise reject what they think, not what they see. -- Huang Po

_______________________________________________
Aida mailing list
Aida@...
http://lists.aidaweb.si/mailman/listinfo/aida