<div dir="ltr">Thank you!</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jan 12, 2023 at 6:59 PM <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Eliot Miranda uploaded a new version of Compiler to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Compiler-eem.485.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/trunk/Compiler-eem.485.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Compiler-eem.485<br>
Author: eem<br>
Time: 12 January 2023, 4:59:47.97574 pm<br>
UUID: f3ee1919-f5a8-4228-9b2f-910ba2e5b243<br>
Ancestors: Compiler-eem.484<br>
<br>
Fix the parser dropping the last comment of a method, by ensuring it never assigns a nil comment.<br>
<br>
=============== Diff against Compiler-eem.484 ===============<br>
<br>
Item was changed:<br>
  ----- Method: Parser>>addComment (in category 'private') -----<br>
  addComment<br>
<br>
+       (parseNode ~~ nil<br>
+        and: [currentComment ~~ nil])<br>
-       parseNode ~~ nil<br>
                ifTrue: <br>
                        [parseNode comment: currentComment.<br>
                        currentComment := nil]!<br>
<br>
<br>
</blockquote></div>