<div dir="ltr"><div>Hi Eliot,</div><div><br></div><div>Thank you for the quick fix, but I have one more example of misbehavior when parsing comments. The issue is that the last period (or lack thereof) makes a difference with regards to associating the comment with the correct parse node.</div><div><br></div><div>For example, when parsing:<br></div><div><br></div><div>test<br>         true ifTrue: ["inner comment"] "outer comment"</div><div><br></div><div>the parser associates both comments to the inside of the block, whereas if we include the period, like so:</div><div><br></div><div>test<br>              true ifTrue: ["inner comment"]. "outer comment"</div><div><br></div><div>it correctly leaves the inner comment inside and the outer comment outside</div><div><br></div><div>All the best,</div><div>Florin<br></div></div>