[squeak-dev] The Trunk: Tools-nice.1034.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Apr 10 20:41:28 UTC 2021


Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-nice.1034.mcz

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

Name: Tools-nice.1034
Author: nice
Time: 10 April 2021, 10:41:23.083509 pm
UUID: fe72aa70-5707-479b-a576-e2950cfcf6a3
Ancestors: Tools-mt.1033

Quick fix for enabling search of references to a number or other literal from within a message list

Example: 
86400 cmd+n
$a cmd+n
#(0) cmd+n

Note: it won't necessarily highlight numbers formatted differently like 16rFF for 255...
This would probably require AST based search.

=============== Diff against Tools-mt.1033 ===============

Item was changed:
  ----- Method: MessageTrace>>addParentMethodsSending: (in category 'building') -----
  addParentMethodsSending: selectorSymbol
  
  	| methodsList |
  	(methodsList := self systemNavigation allCallsOn: selectorSymbol) isEmpty
  		ifTrue:
  			[ ^(PopUpMenu labels: ' OK ')
  				startUpWithCaption: 'There are no methods that send ', selectorSymbol ]
  		ifFalse:
  			[ self
  				addParentMessages: methodsList
+ 				autoSelectString: selectorSymbol asString]!
- 				autoSelectString: selectorSymbol ]
- !



More information about the Squeak-dev mailing list