The Trunk: Tools-ct.916.mcz

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

The Trunk: Tools-ct.916.mcz

commits-2
Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ct.916.mcz

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

Name: Tools-ct.916
Author: ct
Time: 15 November 2019, 7:00:12.771005 pm
UUID: 05c08fc9-78c5-ea45-842e-dfc847d32551
Ancestors: Tools-mt.914

VersionsBrowser>>#selectMethod:: Compare not only timeStamp, but also source, as timeStamp is only minute-precise.

=============== Diff against Tools-mt.914 ===============

Item was changed:
  ----- Method: VersionsBrowser>>selectMethod: (in category 'menu') -----
  selectMethod: aCompiledMethod
 
  self toggleListIndex: (self changeList indexOf: (
+ self changeList detect: [:change |
+ change stamp = aCompiledMethod timeStamp and: [
+ change string = aCompiledMethod getSource asString]]))!
- self changeList detect: [:change | change stamp = aCompiledMethod timeStamp]))!