[squeak-dev] The Trunk: Monticello-ct.755.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Nov 30 16:18:42 UTC 2021


Marcel Taeumel uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-ct.755.mcz

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

Name: Monticello-ct.755
Author: ct
Time: 27 October 2021, 7:34:45.607494 pm
UUID: beab3269-c89b-7b49-a0d3-987f24acd2b4
Ancestors: Monticello-ul.753

On MCRepositoryGroup, implements further selectors for compatibility with MCRepository (#cacheAllFileNamesDuring: and #isValid).

This is required for  https://github.com/hpi-swa/Squot/pull/328.

(Just asking, would it be possible to backport this to 5.3 and 5.2? This would testing much easier on the Squot side.)

=============== Diff against Monticello-ul.753 ===============

Item was added:
+ ----- Method: MCRepositoryGroup>>cacheAllFileNamesDuring: (in category 'private') -----
+ cacheAllFileNamesDuring: aBlock
+ 	^ (repositories
+ 		inject: aBlock
+ 		into: [ :innerBlock :repository |
+ 			[ repository cacheAllFileNamesDuring: innerBlock ]
+ 		]) value!

Item was added:
+ ----- Method: MCRepositoryGroup>>isValid (in category 'testing') -----
+ isValid
+ 
+ 	^ repositories allSatisfy: #isValid!



More information about the Squeak-dev mailing list