The Trunk: Kernel-fbs.777.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.777.mcz

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

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

Name: Kernel-fbs.777
Author: fbs
Time: 29 June 2013, 11:18:55.634 pm
UUID: 41439d77-d04a-004c-94e2-68e5385d0915
Ancestors: Kernel-fbs.776

* #traitComposition and friends aren't Kernel methods, they're means of dealing with changes in traits.
* #printOn: belongs to ModifiedClassDefinitionEvent's package, not Kernel.

=============== Diff against Kernel-fbs.776 ===============

Item was removed:
- ----- Method: ModifiedClassDefinitionEvent>>anyChanges (in category '*Kernel-Classes') -----
- anyChanges
- ^ self isSuperclassModified or: [self areInstVarsModified or: [self areClassVarsModified or: [self areSharedPoolsModified or: [self isTraitCompositionModified]]]]!

Item was removed:
- ----- Method: ModifiedClassDefinitionEvent>>isTraitCompositionModified (in category '*Kernel-Classes') -----
- isTraitCompositionModified
- ^self traitComposition printString ~= self oldTraitComposition printString!

Item was removed:
- ----- Method: ModifiedClassDefinitionEvent>>oldTraitComposition (in category '*Kernel-Classes') -----
- oldTraitComposition
- ^ oldItem traitComposition!

Item was removed:
- ----- Method: ModifiedClassDefinitionEvent>>printOn: (in category '*Kernel-Classes') -----
- printOn: aStream
- super printOn: aStream.
- aStream
- nextPutAll: ' Super: ';
- print: self isSuperclassModified;
- nextPutAll: ' TraitComposition: ';
- print: self isTraitCompositionModified;
- nextPutAll: ' InstVars: ';
- print: self areInstVarsModified;
- nextPutAll: ' ClassVars: ';
- print: self areClassVarsModified;
- nextPutAll: ' SharedPools: ';
- print: self areSharedPoolsModified.!

Item was removed:
- ----- Method: ModifiedClassDefinitionEvent>>traitComposition (in category '*Kernel-Classes') -----
- traitComposition
- ^ item traitComposition!