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
FieldsFields inherited from class io.github.eutro.jwasm.tree.PrefixInsnNode
intOpcodeFields inherited from class io.github.eutro.jwasm.tree.AbstractInsnNode
opcode, pc -
Constructor Summary
ConstructorsConstructorDescriptionPrefixTableInsnNode(int intOpcode, int table) Construct aPrefixTableInsnNodewith the given opcode and table. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(ExprVisitor ev) Visit the givenExprVisitorwith this instruction.
-
Field Details
-
table
public int tableThe index of the table.
-
-
Constructor Details
-
PrefixTableInsnNode
public PrefixTableInsnNode(int intOpcode, int table) Construct aPrefixTableInsnNodewith the given opcode and table.- Parameters:
intOpcode- The opcode of the instruction.table- The index of the table.
-
-
Method Details
-
accept
Visit the givenExprVisitorwith this instruction.- Overrides:
acceptin classPrefixInsnNode- Parameters:
ev- The visitor to visit.- See Also:
-