I tested with this and it worked :
var f0:DisplayObject->Void = Reflect.field(child_dyn, "addChild");
trace(f0) // non null value .
But none of this works:
var f0:String->(Event->Void)->Void = Reflect.field(child_dyn, "addEventListener");
trace(f0) // null value .
ā
var f0:String->(Event->Void)->Void = Reflect.field(child_dyn, "addEventListener<T>");
trace(f0) // null value .
What is the problem in this case ?