public class LineNumberNode extends Object
| Modifier and Type | Field and Description |
|---|---|
int |
line
A line number.
|
Label |
start
The first instruction corresponding to this line number.
|
| Constructor and Description |
|---|
LineNumberNode(int line,
Label start)
Constructs a new
LineNumberNode. |
public int line
public Label start
public LineNumberNode(int line,
Label start)
LineNumberNode.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.public void accept(MethodVisitor mv)
mv - a method visitor.