Uses of Class
serp.bytecode.LocalVariableInstruction
-
Packages that use LocalVariableInstruction Package Description serp.bytecode Bytecode Manipuation -
-
Uses of LocalVariableInstruction in serp.bytecode
Subclasses of LocalVariableInstruction in serp.bytecode Modifier and Type Class Description class
IIncInstruction
Theiinc
instruction.class
LoadInstruction
Loads a value from the locals table to the stack.class
RetInstruction
Theret
instruction is used in the implementation of finally.class
StoreInstruction
An instruction to store a value from a local variable onto the stack.class
WideInstruction
Thewide
instruction, which is used to allow other instructions to index values beyond what they can normally index baed on the length of their arguments.Methods in serp.bytecode that return LocalVariableInstruction Modifier and Type Method Description LocalVariableInstruction
LocalVariableInstruction. setLocal(int index)
Set the index of the local variable that this instruction operates on.LocalVariableInstruction
LocalVariableInstruction. setLocalVariable(LocalVariable local)
Set the local variable object this instruction operates on.LocalVariableInstruction
LocalVariableInstruction. setParam(int param)
Set the method parameter that this instruction operates on.
-