[squeak-dev] The Inbox: Kernel-cmm.1490.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 12 23:39:06 UTC 2022


Chris Muller uploaded a new version of Kernel to project The Inbox:
http://source.squeak.org/inbox/Kernel-cmm.1490.mcz

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

Name: Kernel-cmm.1490
Author: cmm
Time: 12 August 2022, 6:39:05.636197 pm
UUID: f69b7e1f-7d1e-4c87-90fe-66a298d5b59e
Ancestors: Kernel-cmm.1489

Syntax sugar for specifying arguments to MessageSend's inspired by Kernel-mt.1489.

=============== Diff against Kernel-cmm.1489 ===============

Item was added:
+ ----- Method: MessageSend>><< (in category 'accessing') -----
+ << args 
+ 	arguments := args isArray
+ 		ifTrue: [ args ]
+ 		ifFalse: [ Array with: args ]!



More information about the Squeak-dev mailing list