The Trunk: System-eem.971.mcz

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

The Trunk: System-eem.971.mcz

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

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

Name: System-eem.971
Author: eem
Time: 31 October 2017, 5:05:53.100365 pm
UUID: 42107d12-9bdf-4054-b38d-b31fbda8ffe1
Ancestors: System-tpr.970

Declare an undeclared class var.
Fix a refactoring test by guarding for symbols in SmartRefStream class>>isConversionSelector:

=============== Diff against System-tpr.970 ===============

Item was changed:
  ImageSegment subclass: #NativeImageSegment
  instanceVariableNames: ''
+ classVariableNames: 'BiggestFileNumber'
- classVariableNames: ''
  poolDictionaries: ''
  category: 'System-Object Storage'!
 
  !NativeImageSegment commentStamp: 'eem 7/3/2017 13:52' prior: 0!
  NativeImageSegment is used to save and restore projects.  It uses
  one primitive to create a segment (a WordArray) whose contents
  are the objects in the project in the same format as they appear in
  the VM's heap.  It uses another primitive to convert a segment back
  into objects.!

Item was changed:
  ----- Method: SmartRefStream class>>isConversionSelector: (in category 'browsing support') -----
+ isConversionSelector: aLiteral
- isConversionSelector: aSelector
  "Let mapClass: be found as sender of our conversion methods"
+ ^aLiteral isSymbol
+ and: [aLiteral last isDigit
+ and: [self includesSelector: aLiteral]]!
- ^aSelector last isDigit and: [self includesSelector: aSelector]
- !