Harbs Mon, 08 Aug 2016 13:51:44 -0700
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