Type.getBaseMethod Method
Returns the base implementation of a method from the base class of the specified instance.
var methodRefVar = typeInstanceVar.getBaseMethod(instance, name);
Use the getBaseMethod method to retrieve the base implementation of a method from a specified instance.
A method reference is useful for invoking the method of one class from another class by using the ECMAScript Function.call method.
Show: