LocalVariableNodepublic class LocalVariableNode extends Object A node that represents a local variable declaration. |
Fields Summary |
---|
public String | nameThe name of a local variable. | public String | descThe type descriptor of this local variable. | public Label | startThe first instruction corresponding to the scope of this local variable
(inclusive). | public Label | endThe last instruction corresponding to the scope of this local variable
(exclusive). | public int | indexThe local variable's index. |
Constructors Summary |
---|
public LocalVariableNode(String name, String desc, Label start, Label end, int index)Constructs a new {@link LocalVariableNode LocalVariableNode} object.
this.name = name;
this.desc = desc;
this.start = start;
this.end = end;
this.index = index;
|
|