pub trait Compiler { // Required method fn compile(&mut self, ctx: NonNull<Context>) -> JitFn; }
A trait for the compiler backend.
Get the next compiled function from the Compiler.