The Trunk: Kernel-fbs.805.mcz

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

The Trunk: Kernel-fbs.805.mcz

commits-2
Frank Shearar uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-fbs.805.mcz

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

Name: Kernel-fbs.805
Author: fbs
Time: 11 September 2013, 10:27:07.724 pm
UUID: c6324847-4a08-114a-a14d-ecd4c00fb05e
Ancestors: Kernel-fbs.804

Move Behaviour >> #changeRecordsAt: to System-Changes. There are other System-Changes things still in Behavior, which should also eventually move.

=============== Diff against Kernel-fbs.804 ===============

Item was removed:
- ----- Method: Behavior>>changeRecordsAt: (in category 'accessing method dictionary') -----
- changeRecordsAt: selector
- "Return a list of ChangeRecords for all versions of the method at selector. Source code can be retrieved by sending string to any one.  Return nil if the method is absent."
-
- "(Pen changeRecordsAt: #go:) collect: [:cRec | cRec string]"
- ^ChangeSet
- scanVersionsOf: (self compiledMethodAt: selector ifAbsent: [^ nil])
- class: self meta: self isMeta
- category: (self whichCategoryIncludesSelector: selector)
- selector: selector.!