pub trait OpcodeHandler: Send + Sync {
// Required method
fn handle_instruction(
&self,
context: &mut FunctionDecompilerContext,
instruction: &Instruction,
) -> Result<ProcessedInstruction, FunctionDecompilerError>;
}
Expand description
Represents an opcode handler for the decompiler.