protected MethodType onConstructor(Method method, Constructor constructor, String name, Object[] parameters, Doc doc)
{
MethodType function = new ConstructorBase(this, constructor, method, name, parameters, doc);
putfield(_class, null, "m_" + name, function);
putfield(_class, null, "M_" + name, new AnyFunction(function));
declare(function);
return function;
}