MCPcopy Index your code
hub / github.com/clojure/clojure / visitAnnotation

Method visitAnnotation

src/jvm/clojure/asm/FieldVisitor.java:87–92  ·  view source on GitHub ↗

Visits an annotation of the field. @param descriptor the class descriptor of the annotation class. @param visible true if the annotation is visible at runtime. @return a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotati

(final String descriptor, final boolean visible)

Source from the content-addressed store, hash-verified

85 * interested in visiting this annotation.
86 */
87 public AnnotationVisitor visitAnnotation(final String descriptor, final boolean visible) {
88 if (fv != null) {
89 return fv.visitAnnotation(descriptor, visible);
90 }
91 return null;
92 }
93
94 /**
95 * Visits an annotation on the type of the field.

Callers 1

readFieldMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected