Package io.github.eutro.jwasm.tree
Class SelectInsnNode
java.lang.Object
io.github.eutro.jwasm.tree.AbstractInsnNode
io.github.eutro.jwasm.tree.SelectInsnNode
A node that represents a select instruction with explicit type arguments.
- See Also:
-
Field Summary
FieldsFields inherited from class io.github.eutro.jwasm.tree.AbstractInsnNode
opcode, pc -
Constructor Summary
ConstructorsConstructorDescriptionSelectInsnNode(byte[] type) Construct aSelectInsnNodewith the given types. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(ExprVisitor ev) Visit the givenExprVisitorwith this instruction.
-
Field Details
-
type
public byte[] typeThe valtypes of the instruction.
-
-
Constructor Details
-
SelectInsnNode
public SelectInsnNode(byte[] type) Construct aSelectInsnNodewith the given types.- Parameters:
type- The valtypes of the instruction.
-
-
Method Details
-
accept
Visit the givenExprVisitorwith this instruction.- Specified by:
acceptin classAbstractInsnNode- Parameters:
ev- The visitor to visit.- See Also:
-