use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitRecordComponentAnnotation.
@Override
public Textifier visitRecordComponentAnnotation(String descriptor, boolean visible) {
Textifier t = super.visitRecordComponentAnnotation(descriptor, visible);
log();
return t;
}
use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitAnnotation.
@Override
public Textifier visitAnnotation(String name, String desc) {
Textifier t = super.visitAnnotation(name, desc);
log();
return t;
}
Aggregations