FunctionInformation fi = AnnotationHelper.extract(name, xf);
if (fi != null) {
name = fi.getName();
information.put(name, fi);
}
IFunction f = (IFunction) methods.get(name);
if (f instanceof InstanceMethod) {
OverloadedMethod om = new OverloadedMethod();
om.add((InstanceMethod) f);
om.add(new InstanceMethod(c, instance, m, converter));
methods.put(name, om);