The Inbox: Collections-ct.861.mcz

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

The Inbox: Collections-ct.861.mcz

commits-2
A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-ct.861.mcz

==================== Summary ====================

Name: Collections-ct.861
Author: ct
Time: 15 November 2019, 7:18:41.561005 pm
UUID: 3a18d134-b0f9-224c-be2c-f6e4916260dd
Ancestors: Collections-pre.857

Adds fileIn/Out support for TextIndent.

=============== Diff against Collections-pre.857 ===============

Item was added:
+ ----- Method: TextIndent class>>scanCharacter (in category 'fileIn/Out') -----
+ scanCharacter
+
+ ^ $I!

Item was added:
+ ----- Method: TextIndent class>>scanFrom: (in category 'fileIn/Out') -----
+ scanFrom: aStream
+
+ ^ self amount: (Integer readFrom: aStream)!

Item was added:
+ ----- Method: TextIndent>>writeScanOn: (in category 'fileIn/fileOut') -----
+ writeScanOn: aStream
+
+ aStream
+ nextPut: self class scanCharacter;
+ store: self amount.!