> Also, if you compiling in strict mode (which is the default), you cannot
> have implicit casts.
>
> i.e.
>
> trace("Data : " + 5);
>
> will need to be:
>
> trace("Data : " + String(5));
>
> These were the biggest issues I ran into when porting my first app. Hope
> that helps...

I haven't read the whole ECMA Spec, so I'm asking directly : does this
behavior is ECMA one ? So I guess that "+" is defined in strict mode as :
String + String | Number + Number. Could you give more information on
"internal" semantics wrt public for instance ?

Nicolas


_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to