use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitMethodAnnotation.
@Override
public Textifier visitMethodAnnotation(String desc, boolean visible) {
Textifier t = super.visitMethodAnnotation(desc, visible);
log();
return t;
}
use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitTypeAnnotation.
@Override
public Textifier visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
Textifier t = super.visitTypeAnnotation(typeRef, typePath, desc, visible);
log();
return t;
}
use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitClassAnnotation.
@Override
public Textifier visitClassAnnotation(String desc, boolean visible) {
Textifier t = super.visitClassAnnotation(desc, visible);
log();
return t;
}
use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitAnnotableParameterCount.
@Override
public Textifier visitAnnotableParameterCount(int parameterCount, boolean visible) {
Textifier t = super.visitAnnotableParameterCount(parameterCount, visible);
log();
return t;
}
use of org.objectweb.asm.util.Textifier in project groovy by apache.
the class LoggableTextifier method visitFieldAnnotation.
@Override
public Textifier visitFieldAnnotation(String desc, boolean visible) {
Textifier t = super.visitFieldAnnotation(desc, visible);
log();
return t;
}
Aggregations