Local |
LocalTable.addLocal() |
Add a local to this table.
|
Local |
LocalTable.addLocal(java.lang.String name,
java.lang.String type) |
Add a local to this table.
|
Local |
LocalTable.addLocal(Local local) |
Import a local from another method/class.
|
Local |
LocalTable.getLocal(int local) |
Return the local with the given locals index, or null if none.
|
Local |
LocalTable.getLocal(java.lang.String name) |
Return the local with the given name, or null if none.
|
Local[] |
LocalTable.getLocals() |
Return all the locals of this method.
|
Local[] |
LocalTable.getLocals(java.lang.String name) |
Return all locals with the given name, or empty array if none.
|
protected abstract Local |
LocalTable.newLocal() |
Create a new element of this table.
|
protected Local |
LocalVariableTable.newLocal() |
|
protected Local |
LocalVariableTypeTable.newLocal() |
|
protected abstract Local[] |
LocalTable.newLocalArray(int size) |
Create a new array.
|
protected Local[] |
LocalVariableTable.newLocalArray(int size) |
|
protected Local[] |
LocalVariableTypeTable.newLocalArray(int size) |
|