Home | History | Annotate | Download | only in tree

Lines Matching defs:label

32 import org.objectweb.asm.Label;
36 * An {@link AbstractInsnNode} that encapsulates a {@link Label}.
40 public Label label;
42 public LabelNode(final Label label) {
44 this.label = label;
48 cv.visitLabel(label);
52 return LABEL;