pub fn run_program<'program, BlockId, Op, S>(
program: &'program [Op],
blocks: &'program BTreeMap<BlockId, Program<Op>>,
stepper: &mut S,
) -> Result<(), RunError<BlockId, S::Error>>Expand description
Run a program with an explicit block table.