org.objectweb.asm.tree
public class LineNumberNode extends AbstractInsnNode
Field Summary | |
---|---|
int | line
A line number. |
LabelNode | start
The first instruction corresponding to this line number. |
Constructor Summary | |
---|---|
LineNumberNode(int line, LabelNode start)
Constructs a new LineNumberNode.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv) |
AbstractInsnNode | clone(Map labels) |
int | getType() |
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.