OK, I see. However I feel "=>" a very "un-pascal" thing, remind me of PHP.  :-)   I guess "as" would also complicate the parser?<br><br><div class="gmail_quote">2013/3/18 Paul Ishenin <span dir="ltr"><<a href="mailto:paul.ishenin@gmail.com" target="_blank">paul.ishenin@gmail.com</a>></span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">18.03.13, 9:27, Xiangrong Fang пишет:<div class="im"><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I am sorry I didn't follow this thread although I am the "OP" :-).   If<br>
I understand correct, I would suggest NOT introduce the "absolute"<br>
keyword, instead, make it ALWAYS absolute. i.e.:<br>
<br>
with a = SomeObject, b = SomeRecord do begin<br>
   ... ...<br>
end;<br>
<br>
Both a and b are "reference" to the object or record, IMO there seems no<br>
need to do assignment in the with syntax. Thus, I suggest use = instead<br>
of :=<br>
</blockquote>
<br></div>
'=' can't be used because it can be a part of expression. There is no big difference between<br>
with (a = SomeObject) do<br>
and<br>
with a = SomeObject do<br>
<br>
After more thinking I see that ':=' as well as absolute keyword are also bad because they will complicate the parser (although it is possible to use them). Parser will need to read the first token and check if it is an identifier, read second token and compare with ':=' (or 'absolute') and if it is not ':=' (or 'absolute') return to expression parse.<br>


<br>
At the same time we will not complicate the parser if we place alias identifier after the with expression like:<br>
<br>
with expression1, expression2 => alias2, expression3, expression4 => alias4 do<br>
<br>
begin<br>
<br>
end;<br>
<br>
Where '=>' is some token which can't be used in expressions.<br>
<br>
Best regards,<br>
Paul Ishenin<div class="HOEnZb"><div class="h5"><br>
<br>
______________________________<u></u>_________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org" target="_blank">fpc-pascal@lists.freepascal.<u></u>org</a><br>
<a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal" target="_blank">http://lists.freepascal.org/<u></u>mailman/listinfo/fpc-pascal</a><br>
</div></div></blockquote></div><br>