[squeak-dev] The Inbox: Kernel-mt.1489.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 11 12:28:58 UTC 2022


A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-mt.1489.mcz

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

Name: Kernel-mt.1489
Author: mt
Time: 11 August 2022, 2:28:56.498306 pm
UUID: 1413f35f-167c-7d45-af5c-198546d08830
Ancestors: Kernel-eem.1488

Propose #>>> message to set up message sends.

Examples:
	(5 >>> #negated) value.
	(5 >>> #raisedTo: >>> 2) value.

(This is just a brain fart. Feel free to discuss it. Maybe I am on to something here. Maybe not.)

=============== Diff against Kernel-eem.1488 ===============

Item was added:
+ ----- Method: MessageSend>>>>> (in category 'evaluating') -----
+ >>> arg
+ 
+ 	arguments := arguments copyWith: arg.!

Item was added:
+ ----- Method: Object>>>>> (in category 'evaluating') -----
+ >>> aSelector
+ 	"
+ 	(5 >>> #negated) value.
+ 	(5 >>> #raisedTo: >>> 2) value.
+ 	"
+ 	
+ 	^ MessageSend receiver: self selector: aSelector!



More information about the Squeak-dev mailing list