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 LineNumberNode object.
| |
| Method Summary | |
|---|---|
| void | accept(CodeVisitor cv)
Makes the given code visitor visit this line number declaration.
|
LineNumberNode object.
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: cv a code visitor.