[squeak-dev] The Trunk: Collections-fbs.524.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 23 09:47:46 UTC 2013


Frank Shearar uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-fbs.524.mcz

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

Name: Collections-fbs.524
Author: fbs
Time: 23 July 2013, 10:43:34.427 am
UUID: 0f99d702-5da3-6a46-aaa7-e74e1dad2999
Ancestors: Collections-fbs.523

Move Exceptions close to where they're used, rather than collecting them together just because they're Exceptions.

=============== Diff against Collections-fbs.523 ===============

Item was added:
+ Error subclass: #EndOfStream
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Collections-Exceptions'!
+ 
+ !EndOfStream commentStamp: '<historical>' prior: 0!
+ Signalled when ReadStream>>next encounters a premature end.!

Item was added:
+ ----- Method: EndOfStream>>defaultAction (in category 'exceptionDescription') -----
+ defaultAction
+ 	"Answer ReadStream>>next default reply."
+ 
+ 	^ nil!

Item was added:
+ ----- Method: EndOfStream>>isResumable (in category 'description') -----
+ isResumable
+ 	"EndOfStream is resumable, so ReadStream>>next can answer"
+ 
+ 	^ true!



More information about the Squeak-dev mailing list