org.objectweb.asm.tree
Class LineNumberNode
public class LineNumberNode
A node that represents a line number declaration.
int | line - A line number.
|
Label | start - The first instruction corresponding to this line number.
|
void | accept(CodeVisitor cv) - Makes the given code visitor visit this line number declaration.
|
line
public int line
A line number. This number refers to the source file from which the class
was compiled.
start
public Label start
The first instruction corresponding to this line number.
LineNumberNode
public LineNumberNode(int line,
Label start)
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.
accept
public void accept(CodeVisitor cv)
Makes the given code visitor visit this line number declaration.