<div dir="ltr"><div><div>hi,<br><br></div><div>I have a quick fix, tested only with your example.<br>It just stores the original selection and restores it after the query.<br></div><div>Change Parser &gt;&gt; #queryUndefined to:<br></div><div><br></div>Parser &gt;&gt; queryUndefined<br>    | varStart varName originalStart originalStop | <br>    originalStart := cue requestor startIndex.<br>    originalStop := cue requestor stopIndex.<br>    varName := parseNode key.<br>    varStart := self endOfLastToken + requestorOffset - varName size + 1.<br>    cue requestor selectFrom: varStart to: varStart + varName size - 1; select.<br>    (UndefinedVariable name: varName) ifFalse: [^ self fail].<br>    cue requestor selectFrom: originalStart to: originalStop; select.<br><br></div>Cheers, Balazs<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 22, 2014 at 2:12 AM, Eliot Miranda <span dir="ltr">&lt;<a href="mailto:eliot.miranda@gmail.com" target="_blank">eliot.miranda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">hi compiler hackers....<div><br></div><div>in Squeak trunk evaluate the following, proceeding through the warning that t appears to be uninitialized when send ifNil:</div><div><br></div><div><div>| t |</div><div>t ifNil: [#ignore].</div><div>3 + 4</div><div><br></div><div><br></div><div>7 is printed between the &quot;t&quot; and the &quot;ifNil:&quot;.  It would be nice if it were still printed after the 3 + 4.  wanna fix it?</div><span class="HOEnZb"><font color="#888888">-- <br>best,<div>Eliot</div>
</font></span></div></div>
<br><br>
<br></blockquote></div><br></div>