Is there any way that I can reference a var or const as the default value for a function argument in actionscript 3.
I can define default values like null, string, int.
function a( b = null ) { blah... }
But what I want to do is
function a( b = function(){} ) { blah... }
which it seems like there would be a way to do. Presumably through a const