@Target(value=FIELD)
@Retention(value=RUNTIME)
public @interface OperandSize
For example, OpCode.PUSHDATA1 has a prefix size of 1 which means that before the operand
there is one byte prefix that determines how long the operand is.
Or OpCode.JMP has an operand size of 1 byte which tells the offset to jump.
| Modifier and Type | Optional Element and Description |
|---|---|
int |
prefixSize |
int |
size |