I have a method which takes a function as one of its parameters. Is there any way to inspect this function and determine what parameters it takes?
I have tried both getClassInfo()and describeType(). describeType does in fact return that information I need if the class passed to it has a public method. But I can't figure out how to inspect a function that isn't attached to a class. Thanks,

