<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Note that this does not only fill a logical gap but also could actually useful in MessageSendRecorder [1].</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</p>
<p><br>
</p>
<p>[1] <a href="https://github.com/hpi-swa/MessageSendRecorder/blob/befc38911ab66cc810aaa03539ae7b6d8374c0b3/packages/MessageSendRecorder.package/MessageSendRecorder.class/instance/recordInto.return.receiver.arguments.context..st#L10" class="x_OWAAutoLink" id="LPlnk935076">https://github.com/hpi-swa/MessageSendRecorder/blob/befc38911ab66cc810aaa03539ae7b6d8374c0b3/packages/MessageSendRecorder.package/MessageSendRecorder.class/instance/recordInto.return.receiver.arguments.context..st#L10</a></p>
<div id="x_Signature">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:rgb(0,0,0); font-family:Calibri,Helvetica,sans-serif,EmojiFont,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Segoe UI Symbol","Android Emoji",EmojiSymbols">
<div name="x_divtagdefaultwrapper" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:; margin:0">
<div>
<div class="x__rp_T4" id="x_Item.MessagePartBody">
<div class="x__rp_U4 x_ms-font-weight-regular x_ms-font-color-neutralDark x_rpHighlightAllClass x_rpHighlightBodyClass" id="x_Item.MessageUniqueBody" style="font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif,serif,EmojiFont">
<div dir="ltr">
<div id="x_divtagdefaultwrapper"><font face="Calibri,Helvetica,sans-serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols">
<div id="x_Signature">
<div style="margin:0px"><font style="font-family:Calibri,Arial,Helvetica,sans-serif,serif,EmojiFont">
<div><font size="3" color="black"><span style="font-size:12pt"><a href="http://www.hpi.de/" target="_blank" rel="noopener noreferrer" id="LPNoLP"><font size="2"><span id="LPlnk909538"><font color="#757B80"></font></span></font></a></span></font></div>
</font></div>
</div>
</font></div>
</div>
</div>
</div>
</div>
<div><font size="2" color="#808080"></font></div>
</div>
</div>
</div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Dienstag, 2. März 2021 19:16:42<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Inbox: Kernel-ct.1376.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">A new version of Kernel was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Kernel-ct.1376.mcz">http://source.squeak.org/inbox/Kernel-ct.1376.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Kernel-ct.1376<br>
Author: ct<br>
Time: 2 March 2021, 7:16:36.10917 pm<br>
UUID: 4c5758e1-3727-f04b-86c3-e9fe79a65db4<br>
Ancestors: Kernel-jar.1375<br>
<br>
Adds #cull:cull:cull:cull:cull: (for five args) analogously to #value:value:value:value:.<br>
<br>
=============== Diff against Kernel-jar.1375 ===============<br>
<br>
Item was added:<br>
+ ----- Method: BlockClosure>>cull:cull:cull:cull:cull: (in category 'evaluating') -----<br>
+ cull: firstArg cull: secondArg cull: thirdArg cull: fourthArg cull: fifthArg<br>
+        "Activate the receiver, with five or less arguments."<br>
+        <primitive: 206> "Handle the five argument case primitively"<br>
+ <br>
+        ^ numArgs<br>
+                caseOf: {<br>
+                        [5] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg value: fifthArg].<br>
+                        [4] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg].<br>
+                        [3] -> [self value: firstArg value: secondArg value: thirdArg].<br>
+                        [2] -> [self value: firstArg value: secondArg].<br>
+                        [1] -> [self value: firstArg].<br>
+                        [0] -> [self value] }<br>
+                otherwise: [self numArgsError: numArgs]!<br>
<br>
Item was added:<br>
+ ----- Method: FullBlockClosure>>cull:cull:cull:cull:cull: (in category 'evaluating') -----<br>
+ cull: firstArg cull: secondArg cull: thirdArg cull: fourthArg cull: fifthArg<br>
+        "Activate the receiver, with five or less arguments."<br>
+        <primitive: 207> "Handle the five argument case primitively"<br>
+ <br>
+        ^ numArgs<br>
+                caseOf: {<br>
+                        [5] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg value: fifthArg].<br>
+                        [4] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg].<br>
+                        [3] -> [self value: firstArg value: secondArg value: thirdArg].<br>
+                        [2] -> [self value: firstArg value: secondArg].<br>
+                        [1] -> [self value: firstArg].<br>
+                        [0] -> [self value] }<br>
+                otherwise: [self numArgsError: numArgs]!<br>
<br>
Item was added:<br>
+ ----- Method: MessageSend>>cull:cull:cull:cull:cull: (in category 'evaluating') -----<br>
+ cull: firstArg cull: secondArg cull: thirdArg cull: fourthArg cull: fifthArg<br>
+        "Send the message with these optional arguments and answer the return value"<br>
+ <br>
+        ^ selector numArgs caseOf: {<br>
+                [5] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg value: fifthArg].<br>
+                [4] -> [self value: firstArg value: secondArg value: thirdArg value: fourthArg].<br>
+                [3] -> [self value: firstArg value: secondArg value: thirdArg].<br>
+                [2] -> [self value: firstArg value: secondArg].<br>
+                [1] -> [self value: firstArg].<br>
+                [0] -> [self value] }!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>