public AnnotationVisitor visitLocalVariableAnnotation(int typeRef,
TypePath typePath, Label[] start, Label[] end, int[] index,
String desc, boolean visible) {
Printer p = this.p.visitLocalVariableAnnotation(typeRef, typePath,
start, end, index, desc, visible);
AnnotationVisitor av = mv == null ? null : mv
.visitLocalVariableAnnotation(typeRef, typePath, start, end,
index, desc, visible);
return new TraceAnnotationVisitor(av, p);
}