public function foo(param:*=undefined):void{}

compiles to this:
param = typeof param !== 'undefined' ? param : undefined;

This is quite obviously meaningless and the assignment should probably be 
skipped in this case.

Harbs

Reply via email to