Std.ExpiExpression Language Interpreter.
An extensible interpreter for BIL expressions.
Note: before diving into the deepness of Expi module consider Exp.eval function, that expose an easy interface to concrete evaluation of expressions.
Expi implements an operational semantics described in [1].
@see <https://github.com/BinaryAnalysisPlatform/bil/releases/download/v0.1/bil.pdf> [1]: BIL Semantics.
class context : object ... endContext for expression evaluation.
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 ... endExpression interpreter.