The Trunk: System-eem.481.mcz

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

The Trunk: System-eem.481.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.481.mcz

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

Name: System-eem.481
Author: eem
Time: 3 April 2012, 9:06:18.247 am
UUID: 97503ce3-a3ad-4e56-af2c-cfde9e93ce52
Ancestors: System-eem.480

browseAllSelect:localToPackage:

=============== Diff against System-eem.480 ===============

Item was added:
+ ----- Method: SystemNavigation>>browseAllSelect:localToPackage: (in category 'browse') -----
+ browseAllSelect: aBlock localToPackage: packageNameOrInfo
+ "Create and schedule a message browser on each method in the given package
+ that, when used as the block argument to aBlock answers true. For example,  
+ (SystemNavigation new
+ browseAllSelect: [:method | method scanFor: 138]
+ localToPackage: #System.)"
+ ^self
+ browseMessageList: (self allMethodsSelect: aBlock localToPackage: packageNameOrInfo)
+ name: 'selected messages local to package ', (self packageInfoFor: packageNameOrInfo) name!