The Trunk: PackageInfo-Base-nice.68.mcz

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

The Trunk: PackageInfo-Base-nice.68.mcz

commits-2
Nicolas Cellier uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-nice.68.mcz

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

Name: PackageInfo-Base-nice.68
Author: nice
Time: 17 December 2013, 11:49:21.474 pm
UUID: b6669527-9a35-4783-a64f-8f2af97e330b
Ancestors: PackageInfo-Base-fbs.67

No need to check if some class selectors are doIt because doIt are no longer installed in method dictionaries.

=============== Diff against PackageInfo-Base-fbs.67 ===============

Item was changed:
  ----- Method: PackageInfo>>methods (in category 'listing') -----
  methods
  ^ (self extensionMethods, self coreMethods) select: [:method |
  method isValid
+ and: [method isLocalSelector]]!
- and: [method isLocalSelector
- and: [method methodSymbol isDoIt not]]]!