use of dyvilx.tools.compiler.backend.visitor.AnnotationReader in project Dyvil by Dyvil.
the class IParameter method visitAnnotation.
default AnnotationVisitor visitAnnotation(String internalType) {
if (this.skipAnnotation(internalType, null)) {
return null;
}
IType type = new InternalType(internalType);
Annotation annotation = new ExternalAnnotation(type);
return new AnnotationReader(this, annotation);
}
Aggregations