[squeak-dev] The Trunk: System-mt.1183.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Oct 23 09:58:13 UTC 2020


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1183.mcz

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

Name: System-mt.1183
Author: mt
Time: 23 October 2020, 11:58:08.658209 am
UUID: 8ce94b0e-ef66-f443-a568-efa0c20a9876
Ancestors: System-mt.1182

Complements Tools-mt.1006

=============== Diff against System-mt.1182 ===============

Item was changed:
  ----- Method: Preferences class>>annotationInfo (in category 'prefs - annotations') -----
  annotationInfo 
  	"Answer a list of pairs characterizing all the available kinds of annotations; in each pair, the first element is a symbol representing the info type, and the second element is a string providing the corresponding balloon help"
  
  	^ #(
  
  		(timeStamp			'The time stamp of the last submission of the method.')
+ 		(author					'The author''s full name if known.')
  		(firstComment		'The first comment in the method, if any.')
  		(masterComment		'The comment at the beginning of the supermost implementor of the method if any.')
  		(documentation		'Comment at beginning of the method or, if it has none, comment at the beginning of a superclass''s implementation of the method')
  		(messageCategory	'Which method category the method lies in')
  		(sendersCount		'A report of how many senders there of the message.')
  		(implementorsCount	'A report of how many implementors there are of the message.')
  		(recentChangeSet	'The most recent change set bearing the method.')
  		(allChangeSets		'A list of all change sets bearing the method.')
  		(priorVersionsCount	'A report of how many previous versions there are of the method' )
  		(priorTimeStamp		'The time stamp of the penultimate submission of the method, if any'))!

Item was changed:
  ----- Method: Preferences class>>defaultAnnotationInfo (in category 'prefs - annotations') -----
  defaultAnnotationInfo
  
+ 	^ #(timeStamp author messageCategory implementorsCount allChangeSets)!
- 	^ #(timeStamp messageCategory implementorsCount allChangeSets)!



More information about the Squeak-dev mailing list