org.objectweb.asm.tree
public class LineNumberNode extends Object
Field Summary | |
---|---|
int | line
A line number. |
Label | start
The first instruction corresponding to this line number. |
Constructor Summary | |
---|---|
LineNumberNode(int line, Label start)
Constructs a new {@link LineNumberNode}.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv)
Makes the given visitor visit this line number declaration.
|
Parameters: 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.
Parameters: mv a method visitor.