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

Method visitField

src/jvm/clojure/asm/ClassVisitor.java:292–302  ·  view source on GitHub ↗

Visits a field of the class. @param access the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated. @param name the field's name. @param descriptor the field's descriptor (see Type). @param signature the field's signature

(
      final int access,
      final String name,
      final String descriptor,
      final String signature,
      final Object value)

Source from the content-addressed store, hash-verified

290 * visitor is not interested in visiting these annotations and attributes.
291 */
292 public FieldVisitor visitField(
293 final int access,
294 final String name,
295 final String descriptor,
296 final String signature,
297 final Object value) {
298 if (cv != null) {
299 return cv.visitField(access, name, descriptor, signature, value);
300 }
301 return null;
302 }
303
304 /**
305 * Visits a method of the class. This method <i>must</i> return a new {@link MethodVisitor}

Callers 3

compileMethod · 0.95
compileMethod · 0.95
compileStubMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected