Rearrangements of expressions

Top  Previous  Next

What is translated > Rearrangements of expressions

 

Variable declarations are a typical example of a simple rearrangements:

 

Name : Typ;                ->                Typ Name;

 

A little bit more complicated rearrangements are required in instructions. E.g.

 

for factor := expr1 to expr2 do 

->                

for ( factor = expr1; factor != expr2; factor ++ )

 

 

 



This page belongs to the Delphi2Cpp Documentation

Delphi2Cpp home  Content