<body><div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        Aha! :-) Thanks for pointing that out. ;-)<div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div><blockquote class="history_container" type="cite" style="border-left-style:solid;border-width:1px; margin-top:20px; margin-left:0px;padding-left:10px;">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 05.09.2019 18:45:01 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">Eliot Miranda uploaded a new version of Kernel to project The Trunk:<br>http://source.squeak.org/trunk/Kernel-eem.1265.mcz<br><br>==================== Summary ====================<br><br>Name: Kernel-eem.1265<br>Author: eem<br>Time: 5 September 2019, 9:44:47.807982 am<br>UUID: 69e1a0f1-43f5-435e-999d-b8e81b52401a<br>Ancestors: Kernel-mt.1264<br><br>Fix a regression in COmpiledMethod>>messagesSequence caused by the method not having been correctly commented in the first place.<br><br>=============== Diff against Kernel-mt.1264 ===============<br><br>Item was added:<br>+ ----- Method: CompiledCode>>messagesSequence (in category 'scanning') -----<br>+ messagesSequence<br>+    "Answer a sequence of all the message selectors sent by this method in the order<br>+         they are sent.  Unlike messages this may include duplicates."<br>+ <br>+      ^Array streamContents:<br>+               [:str| | scanner |<br>+           scanner := InstructionStream on: self.<br>+               scanner scanFor: <br>+                    [:x | | selectorOrSelf |<br>+                     (selectorOrSelf := scanner selectorToSendOrSelf) == scanner ifFalse:<br>+                                 [str nextPut: selectorOrSelf].<br>+                       false   "keep scanning"]]!<br><br>Item was removed:<br>- ----- Method: CompiledMethod>>messagesSequence (in category 'scanning') -----<br>- messagesSequence<br>- <br>-     self flag: #todo. "mt: Better change #messages to return an array instead of a set?"<br>-       ^ self messages asArray!<br><br><br></div></blockquote>
                                        </div></body>