pub struct CompiledFunctionBody {
pub code: Box<dyn Any + Send + Sync>,
pub needs_gc_heap: bool,
}Expand description
The result of compiling a single function body.
Fields§
§code: Box<dyn Any + Send + Sync>The code. This is whatever type the Compiler implementation wants it
to be, we just shepherd it around.
needs_gc_heap: boolWhether the compiled function needs a GC heap to run; that is, whether it reads a struct field, allocates, an array, or etc…