The Trunk: Files-cmm.101.mcz

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

The Trunk: Files-cmm.101.mcz

commits-2
Chris Muller uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-cmm.101.mcz

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

Name: Files-cmm.101
Author: cmm
Time: 24 February 2011, 7:19:36.954 pm
UUID: 3463cdfa-5a3c-4e33-8c70-22a5f5be61fa
Ancestors: Files-cmm.100

Added conventional and necessary type-checking to new DirectoryEntry>>#=.

=============== Diff against Files-cmm.100 ===============

Item was changed:
  ----- Method: DirectoryEntry>>= (in category 'testing') -----
  = aDirectoryEntry
  "Answer whether I am equivalent in all of my file-system attributes."
+ super = aDirectoryEntry ifTrue: [^ true].
+ self species = aDirectoryEntry species ifFalse: [^ false].
  ^ self containingDirectory = aDirectoryEntry containingDirectory
  and: [self name = aDirectoryEntry name
  and: [self modificationTime = aDirectoryEntry modificationTime
  and: [self fileSize = aDirectoryEntry fileSize]]]!