<div dir="ltr">Sorry, I missed that. There is a conflict with some VMMaker package I think.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le jeu. 29 août 2019 à 14:24, <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Levente Uzonyi uploaded a new version of Kernel to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Kernel-ul.1263.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/trunk/Kernel-ul.1263.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Kernel-ul.1263<br>
Author: ul<br>
Time: 29 August 2019, 2:23:08.696311 pm<br>
UUID: 06ff84ab-3ba9-40f8-90f7-9fcdcca39692<br>
Ancestors: Kernel-nice.1262<br>
<br>
- restore Object >> #perform:with:with:with:with:with: , which was accidentally removed by Kernel-nice.1261<br>
<br>
=============== Diff against Kernel-nice.1262 ===============<br>
<br>
Item was added:<br>
+ ----- Method: Object>>perform:with:with:with:with:with: (in category 'message handling') -----<br>
+ perform: aSymbol with: firstObject with: secondObject with: thirdObject with: fourthObject with: fifthObject<br>
+       "Send the selector, aSymbol, to the receiver with the given arguments.<br>
+       Fail if the number of arguments expected by the selector is not four.<br>
+       Primitive. Optional. See Object documentation whatIsAPrimitive."<br>
+ <br>
+       <primitive: 83><br>
+       ^ self perform: aSymbol withArguments: { firstObject. secondObject. thirdObject. fourthObject. fifthObject }!<br>
<br>
<br>
</blockquote></div>