Std.BiriBIR Interpreter
Biri evaluates terms in the context of a whole program (since terms may contain calls and jumps). Biri also tracks for current position inside block, the block and preceding block.
module type S = sig ... endinclude S with type ('a, 'e) state = ('a, 'e) Monads.Std.Monad.State.ttype ('a, 'e) state = ('a, 'e) Monads.Std.Monad.State.ttype 'a u = (unit, 'a) statetype 'a r = (Bil.result, 'a) stateclass 'a t : object ... endbase class for BIR interpreters