[squeak-dev] The Trunk: Kernel-nice.922.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 1 13:25:36 UTC 2015


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

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

Name: Kernel-nice.922
Author: nice
Time: 1 May 2015, 3:24:52.309 pm
UUID: 609507cb-36a8-44cd-a2ab-368a7a8b6a02
Ancestors: Kernel-nice.921

Remove an un-necessary inst. var. shadowing (inbox Kernel-nice.745 7 March 2013)

=============== Diff against Kernel-nice.921 ===============

Item was changed:
  ----- Method: ContextPart>>asMessage (in category 'converting') -----
  asMessage
+ 	| selector args |
- 	| sender selector args |
- 	sender := self sender.
  	selector := sender method selector.
  	args := Array new: selector numArgs.
  	1 to: selector numArgs do: [ :i | args at: i put: (sender tempAt: i)].
  	^ Message selector: selector arguments: args.!



More information about the Squeak-dev mailing list