Compiler

Trait Compiler 

Source
pub trait Compiler {
    // Required method
    fn compile(&mut self, ctx: NonNull<Context>) -> JitFn;
}
Expand description

A trait for the compiler backend.

Required Methods§

Source

fn compile(&mut self, ctx: NonNull<Context>) -> JitFn

Get the next compiled function from the Compiler.

Implementors§