[squeak-dev] The Trunk: Tools-mt.1133.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 14 15:38:38 UTC 2022


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

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

Name: Tools-mt.1133
Author: mt
Time: 14 February 2022, 4:38:35.919941 pm
UUID: b3bc6ac4-00a9-f74a-8efc-6a1e80bf9ec5
Ancestors: Tools-mt.1132

Browser button label: "vars" -> "variables"

=============== Diff against Tools-mt.1132 ===============

Item was changed:
  ----- Method: CodeHolder>>optionalButtonPairs (in category 'controls') -----
  optionalButtonPairs
  	"Answer a tuple (formerly pairs) defining buttons, in the format:
  			button label
  			selector to send
  			help message"
  
  	| aList |
  
  	aList := #(
  	('browse'			browseMethodFull			'view this method in a browser')
  	('senders' 			browseSendersOfMessages	'browse senders of...')
  	('implementors'		browseMessages				'browse implementors of...')
  	('versions'			browseVersions				'browse versions')), 
  
  	(Preferences decorateBrowserButtons
  		ifTrue:
  			[{#('inheritance'		methodHierarchy 'browse method inheritance
  green: sends to super
  tan: has override(s)
  mauve: both of the above
  pink: is an override but doesn''t call super
  pinkish tan: has override(s), also is an override but doesn''t call super' )}]
  		ifFalse:
  			[{#('inheritance'		methodHierarchy			'browse method inheritance')}]),
  
  	#(
  	('hierarchy'		browseClassHierarchy				'browse class hierarchy')
+ 	('variables'			browseVariableReferences			'browse references to variables...')).
- 	('vars'			browseVariableReferences			'references...')).
  
  	^ aList!



More information about the Squeak-dev mailing list