[squeak-dev] The Trunk: PackageInfo-Base-bp.40.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Feb 27 22:20:46 UTC 2010


Andreas Raab uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-bp.40.mcz

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

Name: PackageInfo-Base-bp.40
Author: bp
Time: 26 February 2010, 8:49:03.118 pm
UUID: ff441a2e-7bda-4fcf-8c22-b07209756cf8
Ancestors: PackageInfo-Base-bp.39

Fix typos

=============== Diff against PackageInfo-Base-bp.39 ===============

Item was added:
+ ----- Method: PackageInfo>>allOverriddenMethodsDo: (in category 'enumerating') -----
+ allOverriddenMethodsDo: aBlock
+ 	"Evaluates aBlock with all the overridden methods in the system"
+ 	^ ProtoObject withAllSubclassesDo: [:class | 
+ 		self overriddenMethodsInClass: class do: aBlock]
+ !

Item was added:
+ ----- Method: PackageInfo>>allOverriddenMethods (in category 'listing') -----
+ allOverriddenMethods
+ 	"search classes and meta classes"
+ 	^ Array streamContents: [:stream |
+ 		self allOverriddenMethodsDo: [:each | stream nextPut: each]]
+ !

Item was changed:
  ----- Method: PackageInfo>>overriddenMethodsDo: (in category 'enumerating') -----
  overriddenMethodsDo: aBlock
  	"Enumerates the methods the receiver contains which have been overridden by other packages"
+ 	^ self allOverriddenMethodsDo: [:ea |
- 	^ self allOverridenMethodsDo: [:ea |
  		(self isOverrideOfYourMethod: ea)
  			ifTrue: [aBlock value: ea]]!

Item was removed:
- ----- Method: PackageInfo>>allOverridenMethodsDo: (in category 'enumerating') -----
- allOverridenMethodsDo: aBlock
- 	"Evaluates aBlock with all the overridden methods in the system"
- 	^ ProtoObject withAllSubclassesDo: [:class | 
- 		self overriddenMethodsInClass: class do: aBlock]
- !

Item was removed:
- ----- Method: PackageInfo>>allOverridenMethods (in category 'listing') -----
- allOverridenMethods
- 	"search classes and meta classes"
- 	^ Array streamContents: [:stream |
- 		self allOverridenMethodsDo: [:each | stream nextPut: each]]
- !




More information about the Squeak-dev mailing list