Hans-Peter Diettrich <drdiettri...@aol.com>:

> Marc Weustink schrieb:
> 
> > What is wrong with :
> > 
> > MyObj.PointArrayField[i] := MyObj.PointArrayField[i] +
> >   FunctionReturningPointOffset(param)
> 
> The need for duplicating a long expression, with chances for typos :-(

So we need Ada's renaming feature?

declare
   x : Some_Type renames MyObj.PointArrayField (i);
begin
   x := x + FunctionReturningPointOffset (param);
end;


Vinzent.

-- 
Neu: GMX De-Mail - Einfach wie E-Mail, sicher wie ein Brief!  
Jetzt De-Mail-Adresse reservieren: http://portal.gmx.net/de/go/demail
_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to