Uses of Class
serp.bytecode.ClassInstruction
-
Packages that use ClassInstruction Package Description serp.bytecode Bytecode Manipuationserp.bytecode.visitor Bytecode Visitor -
-
Uses of ClassInstruction in serp.bytecode
Subclasses of ClassInstruction in serp.bytecode Modifier and Type Class Description class
MultiANewArrayInstruction
Themultianewarray
instruction, which creates a new multi-dimensional array.Methods in serp.bytecode that return ClassInstruction Modifier and Type Method Description ClassInstruction
Code. anew()
Create a new instance of an object; thenew
opcode.ClassInstruction
Code. anewarray()
Create a new instance of an object array; theanew
opcode.ClassInstruction
Code. checkcast()
Cast an object on the stack to another type; thecheckcast
opcode.ClassInstruction
Code. isinstance()
Test if a stack object is an instance of a class; theinstanceof
opcode.ClassInstruction
ClassInstruction. setTypeIndex(int index)
Set theConstantPool
index of theClassEntry
describing the class for this instruction. -
Uses of ClassInstruction in serp.bytecode.visitor
Methods in serp.bytecode.visitor with parameters of type ClassInstruction Modifier and Type Method Description void
BCVisitor. enterClassInstruction(ClassInstruction obj)
void
PrettyPrintVisitor. enterClassInstruction(ClassInstruction obj)
void
BCVisitor. exitClassInstruction(ClassInstruction obj)
-