throw new UndefinedConstructorException(type, callParameters.getParameterTypes());
StringBuilder buf = new StringBuilder();
buf.append("new ").append(LoadClassReference.getClassReference(type, context, true));
if (callParameters != null) {
buf.append(callParameters.generate(Context.create(context)));
}
if (extendsBlock != null) {
for (MetaField field : type.getDeclaredFields()) {
context.addVariable(Variable.createClassMember(field.getName(), field.getType()));
}