Package org.objectweb.asm
Class SymbolTable.LabelEntry
java.lang.Object
org.objectweb.asm.SymbolTable.LabelEntry
- Enclosing class:
- SymbolTable
A label corresponding to a "forward uninitialized" type in the ASM specific
SymbolTable.typeTable
(see Symbol.FORWARD_UNINITIALIZED_TYPE_TAG
).-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final int
The index of this label entry in theSymbolTable.labelTable
array.(package private) final Label
The value of this label entry.(package private) SymbolTable.LabelEntry
Another entry (and so on recursively) having the same hash code (modulo the size ofSymbolTable.labelEntries
}) as this one. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
index
final int indexThe index of this label entry in theSymbolTable.labelTable
array. -
label
The value of this label entry. -
next
Another entry (and so on recursively) having the same hash code (modulo the size ofSymbolTable.labelEntries
}) as this one.
-
-
Constructor Details
-
LabelEntry
LabelEntry(int index, Label label)
-