The Trunk: Monticello-ar.393.mcz

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

The Trunk: Monticello-ar.393.mcz

commits-2
Andreas Raab uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-ar.393.mcz

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

Name: Monticello-ar.393
Author: ar
Time: 5 May 2010, 10:27:11.844 pm
UUID: a0f4638a-82b3-a646-a5f5-cbaff0dc5c90
Ancestors: Monticello-topa.392, Monticello-dtl.392

Merging Monticello-dtl.392:

Display class comment changes in Monticello patch browsers.

=============== Diff against Monticello-topa.392 ===============

Item was added:
+ ----- Method: MCClassDefinition>>printCommentOn: (in category 'printing') -----
+ printCommentOn: stream
+ stream
+ nextPut: $";
+ nextPutAll: self comment asString;
+ nextPut: $"
+ !

Item was changed:
  ----- Method: MCClassDefinition>>source (in category 'printing') -----
  source
+ ^ self definitionAndCommentString!
- ^ self definitionString!

Item was added:
+ ----- Method: MCClassDefinition>>definitionAndCommentString (in category 'printing') -----
+ definitionAndCommentString
+ ^ String streamContents: [:stream |
+ self printDefinitionOn: stream.
+ stream cr; cr.
+ self printCommentOn: stream]!