They're both function types.
var myFunc : function = Update;
then you can pass them to a function:
function SomeAction ( target : Object , callback : function(Object) ) {
callback(target);
}
↧