The Trunk: Kernel-eem.928.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-eem.928.mcz

commits-2
Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.928.mcz

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

Name: Kernel-eem.928
Author: eem
Time: 29 May 2015, 4:08:39.106 pm
UUID: 42550ae5-1cf6-41e1-8e22-93b7ad2a6166
Ancestors: Kernel-eem.927

Modify condenseChanges to preserve direct method history.

=============== Diff against Kernel-eem.927 ===============

Item was changed:
  ----- Method: ClassDescription>>moveChangesTo: (in category 'fileIn/Out') -----
  moveChangesTo: newFile
  "Used in the process of condensing changes, this message requests that
  the source code of all methods of the receiver that have been changed
  should be moved to newFile."
 
  | changes |
  changes := self methodDict keys select: [:sel |
  (self compiledMethodAt: sel) fileIndex > 1].
  self
  fileOutChangedMessages: changes
  on: newFile
+ moveSource: #historically
- moveSource: true
  toFile: 2!