[squeak-dev] The Trunk: System-mt.1108.mcz

Marcel Taeumel marcel.taeumel at hpi.de
Wed Oct 2 07:33:20 UTC 2019


Oh, I meant "merge and revise". My bad. :-)

Best,
Marcel
Am 02.10.2019 09:32:15 schrieb commits at source.squeak.org <commits at source.squeak.org>:
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1108.mcz

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

Name: System-mt.1108
Author: mt
Time: 2 October 2019, 9:32:00.730936 am
UUID: 39de5334-f54e-4440-a28b-06efad556bb6
Ancestors: System-ct.1107

Fixes and revises System-ct.1107.

=============== Diff against System-mt.1102 ===============

Item was changed:
----- Method: SystemNavigation>>allImplementorsOf:localTo: (in category 'query') -----
allImplementorsOf: aSelector localTo: aClass
"Answer a sorted collection of all the methods that are named aSelector in, above, or below the given class."

| result |
result := OrderedCollection new.
+ aClass theNonMetaClass withAllSuperAndSubclassesDoGently: [:class |
+ (class includesSelector: aSelector) ifTrue: [
+ result add: (MethodReference class: class selector: aSelector) ].
+ (class class includesSelector: aSelector) ifTrue: [
+ result add: (MethodReference class: class class selector: aSelector) ] ].
- { aClass theNonMetaClass. aClass theMetaClass } do: [ :baseClass |
- baseClass withAllSuperAndSubclassesDoGently: [ :class |
- (class includesSelector: aSelector) ifTrue: [
- result add: (MethodReference class: class selector: aSelector) ] ] ].
^result sort!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20191002/f3280970/attachment.html>


More information about the Squeak-dev mailing list