In actionscript3, i have a function variable that is assigned to one of 100 functions.
During execution, i want to be able print out the name of the function it assigned to. Unfortunately if you say trace (f) where f is function variable, it merely reports the parameter types and return value type of the function, doesn't mention its name, even if the function is static. Anyone know a trick to get the string representation of the function variable? Too bad Adobe didn't think of this issue, it is a helpful thing when debugging.