[squeak-dev] The Trunk: Monticello-mtf.603.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Oct 26 11:02:53 UTC 2014


Matthew Fulmer uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mtf.603.mcz

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

Name: Monticello-mtf.603
Author: mtf
Time: 26 October 2014, 6:53:22.573 am
UUID: a68bf6b3-1e73-4d62-9fce-cc860422ba2e
Ancestors: Monticello-ul.602

Print the right thing for class-side traits

=============== Diff against Monticello-ul.602 ===============

Item was changed:
  ----- Method: MCClassDefinition>>printClassSideDefinitionOn: (in category 'printing') -----
  printClassSideDefinitionOn: stream
  	
  	stream
  		nextPutAll: self className;
  		nextPutAll: ' class ';
+ 		cr; tab.
+ 	self hasClassTraitComposition ifTrue: [
+ 		stream 
+ 			nextPutAll: 'uses: ';
+ 	 		nextPutAll: self classTraitCompositionString;
+ 			cr; tab ].
+ 	stream
- 		cr; tab;
  		nextPutAll: 'instanceVariableNames: ';
  		store: self classInstanceVariablesString!

Item was added:
+ ----- Method: MCTraitDefinition>>printClassSideDefinitionOn: (in category 'printing') -----
+ printClassSideDefinitionOn: stream
+ 	stream
+ 		nextPutAll: self className;
+ 		nextPutAll: ' classTrait ';
+ 		cr; tab;
+ 		nextPutAll: 'uses: ';
+  		nextPutAll: self classTraitCompositionString!



More information about the Squeak-dev mailing list