Package io.github.eutro.jwasm.tree
Class PrefixTableInsnNode
java.lang.Object
io.github.eutro.jwasm.tree.AbstractInsnNode
io.github.eutro.jwasm.tree.PrefixInsnNode
io.github.eutro.jwasm.tree.PrefixTableInsnNode
A node that represents a prefixed table instruction.
-
Field Summary
Fields inherited from class io.github.eutro.jwasm.tree.PrefixInsnNode
intOpcode
Fields inherited from class io.github.eutro.jwasm.tree.AbstractInsnNode
opcode, pc
-
Constructor Summary
ConstructorDescriptionPrefixTableInsnNode
(int intOpcode, int table) Construct aPrefixTableInsnNode
with the given opcode and table. -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(ExprVisitor ev) Visit the givenExprVisitor
with this instruction.
-
Field Details
-
table
public int tableThe index of the table.
-
-
Constructor Details
-
PrefixTableInsnNode
public PrefixTableInsnNode(int intOpcode, int table) Construct aPrefixTableInsnNode
with the given opcode and table.- Parameters:
intOpcode
- The opcode of the instruction.table
- The index of the table.
-
-
Method Details
-
accept
Visit the givenExprVisitor
with this instruction.- Overrides:
accept
in classPrefixInsnNode
- Parameters:
ev
- The visitor to visit.- See Also:
-