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
Fields inherited from class io.github.eutro.jwasm.tree.AbstractInsnNode
opcode, pc
-
Constructor Summary
ConstructorDescriptionSelectInsnNode
(byte[] type) Construct aSelectInsnNode
with the given types. -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(ExprVisitor ev) Visit the givenExprVisitor
with this instruction.
-
Field Details
-
type
public byte[] typeThe valtypes of the instruction.
-
-
Constructor Details
-
SelectInsnNode
public SelectInsnNode(byte[] type) Construct aSelectInsnNode
with the given types.- Parameters:
type
- The valtypes of the instruction.
-
-
Method Details
-
accept
Visit the givenExprVisitor
with this instruction.- Specified by:
accept
in classAbstractInsnNode
- Parameters:
ev
- The visitor to visit.- See Also:
-