pub fn compile<'source>(
ast: Box<Block<'source>>,
source: &'source str,
) -> Result<CompiledProgram, Error<'source>>Expand description
Compiles a block directly into interpreter-ready bytecode.
ยงErrors
Returns an error if the block contained error diagnostics or failed to compile.