Transcript show:
[ |buffer rr book stream|
buffer := (ByteString new: 2000).
stream := (RWBinaryOrTextStream on:buffer).
rr := SmartRefStream on: stream.
rr nextPut: (Morph new). "need something complicated"
rr close.
2
timesRepeat: [
stream := RWBinaryOrTextStream with: buffer.
stream reset.
book := stream fileInObjectAndCode.
]] timeToRun asString.
Transcript cr.
gives me in the transcript:
(
is Undeclared)
(
is Undeclared) 844
With each times 2000 open rectangles after the (
SmartRefStream seems to be a bit peculiar about the kind
of stream and buffer it wants to work with. I get the same results
when I use a ByteArray and set the steram to binary.
Any clues?
Stephan
_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
