public class LineNumberNode
extends java.lang.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 object. |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this line number declaration.
|
public int line
public Label start
public LineNumberNode(int line,
Label start)
LineNumberNode object.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(CodeVisitor cv)
cv - a code visitor.