org.objectweb.asm.tree
public class LocalVariableNode extends Object
Field Summary | |
---|---|
String | desc
The type descriptor of this local variable. |
Label | end
The last instruction corresponding to the scope of this local variable
(exclusive). |
int | index
The local variable's index. |
String | name
The name of a local variable. |
String | signature
The signature of this local variable. |
Label | start
The first instruction corresponding to the scope of this local variable
(inclusive). |
Constructor Summary | |
---|---|
LocalVariableNode(String name, String desc, String signature, Label start, Label end, int index)
Constructs a new {@link LocalVariableNode}.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv)
Makes the given visitor visit this local variable declaration.
|
Parameters: name the name of a local variable. desc the type descriptor of this local variable. signature the signature of this local variable. May be null. start the first instruction corresponding to the scope of this local variable (inclusive). end the last instruction corresponding to the scope of this local variable (exclusive). index the local variable's index.
Parameters: mv a method visitor.