Package org.eclipse.sisu.space.asm
Class SymbolTable.LabelEntry
java.lang.Object
org.eclipse.sisu.space.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 intThe index of this label entry in theSymbolTable.labelTablearray.(package private) final LabelThe value of this label entry.(package private) SymbolTable.LabelEntryAnother 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.labelTablearray. -
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)
-