parameters.add(Parameter.of(parmType, parm.getName()));
i++;
}
BuildMetaMethod newMethod = new ShadowBuildMetaMethod(buildMetaClass, EmptyStatement.INSTANCE,
GenUtil.scopeOf(method), GenUtil.modifiersOf(method), method.getName(), returnType,
method.getGenericReturnType(),
DefParameters.fromParameters(parameters), ThrowsDeclaration.of(method.getCheckedExceptions()), method);
newMethod.setReifiedFormOf(method);
buildMetaClass.addMethod(newMethod);
}
return buildMetaClass;