1 30 package org.objectweb.asm.tree; 31 32 import org.objectweb.asm.Label; 33 import org.objectweb.asm.MethodVisitor; 34 35 40 public class LineNumberNode { 41 42 46 public int line; 47 48 51 public Label start; 52 53 60 public LineNumberNode(final int line, final Label start) { 61 this.line = line; 62 this.start = start; 63 } 64 65 70 public void accept(final MethodVisitor mv) { 71 mv.visitLineNumber(line, start); 72 } 73 } 74 | Popular Tags |