protected AnnotationInstance create(DotName name, AnnotationTarget target, List<AnnotationValue> annotationValueList) {
return create( name, target, MockHelper.toArray( annotationValueList ) );
}
protected AnnotationInstance create(DotName name, AnnotationTarget target, AnnotationValue[] annotationValues) {
AnnotationInstance annotationInstance = MockHelper.create( name, target, annotationValues );
push( annotationInstance );
return annotationInstance;
}