pub trait ContextInspectRun {
type InterpreterTypes: InterpreterTypes;
type Context: ContextTr + Host;
// Required method
fn run_context(
&mut self,
interpretere: Interpreter<Self::InterpreterTypes>,
instructions: &InstructionTable<Self::InterpreterTypes, Self::Context>,
);
}