类 LineNumberNode

java.lang.Object
cn.taketoday.bytecode.tree.AbstractInsnNode
cn.taketoday.bytecode.tree.LineNumberNode

public class LineNumberNode extends AbstractInsnNode
A node that represents a line number declaration. These nodes are pseudo instruction nodes in order to be inserted in an instruction list.
作者:
Eric Bruneton
  • 字段详细资料

    • line

      public int line
      A line number. This number refers to the source file from which the class was compiled.
    • start

      public LabelNode start
      The first instruction corresponding to this line number.
  • 构造器详细资料

    • LineNumberNode

      public LineNumberNode(int line, LabelNode start)
      Constructs a new LineNumberNode.
      参数:
      line - a line number. This number refers to the source file from which the class was compiled.
      start - the first instruction corresponding to this line number.
  • 方法详细资料