Question
Flex Compiler efficiency
Hi All,
is Flex compiler efficient in reusing of code i.e.
If I write following chunk of code what how these get compiled
Y=a.y.getTime();
X=a.y.getTime();
Whether flex compiler will replace one statement for above two same expressions or not?
As
Var time= a.y.getTime();
Y= time;
X= time;
Thanks & Regards,
Neelam
is Flex compiler efficient in reusing of code i.e.
If I write following chunk of code what how these get compiled
Y=a.y.getTime();
X=a.y.getTime();
Whether flex compiler will replace one statement for above two same expressions or not?
As
Var time= a.y.getTime();
Y= time;
X= time;
Thanks & Regards,
Neelam
