[squeak-dev] The Trunk: Collections-eem.1015.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jun 27 19:18:16 UTC 2022


Eliot Miranda uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-eem.1015.mcz

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

Name: Collections-eem.1015
Author: eem
Time: 27 June 2022, 12:18:14.101923 pm
UUID: 11f1ff67-3cec-4b75-b366-ab7b3c035e54
Ancestors: Collections-mt.1014

Fix the bogus comment in LookupKey>>recompileBindingsAnnouncing:

=============== Diff against Collections-mt.1014 ===============

Item was changed:
  ----- Method: LookupKey>>recompileBindingsAnnouncing: (in category 'bindings') -----
  recompileBindingsAnnouncing: aBool 
+ 	"Recompile all references to the receiver. If the argument is true then put up a progress bar while doing so."
- 	"Make the receiver (a global read-write binding) be a read-only binding"
  
  	aBool 
  		ifTrue: 
  			[Project uiManager informUserDuring: 
+ 				[:bar | 
+ 				(self systemNavigation allCallsOn: self) do: 
+ 					[:mref | 
+ 					bar value: ('Recompiling {1}' translated format: {mref asStringOrText}).
+ 					mref actualClass recompile: mref methodSymbol]]]
- 					[:bar | 
- 					(self systemNavigation allCallsOn: self) do: 
- 							[:mref | 
- 							bar value: ('Recompiling {1}' translated format: {mref asStringOrText}).
- 							mref actualClass recompile: mref methodSymbol]]]
  		ifFalse: 
+ 			[(self systemNavigation allCallsOn: self) do:
+ 				[:mref | mref actualClass recompile: mref methodSymbol]]!
- 			[(self systemNavigation allCallsOn: self) 
- 				do: [:mref | mref actualClass recompile: mref methodSymbol]]!



More information about the Squeak-dev mailing list