You can search for identifiers within the package.
in-package search v0.2.0
type t =
| Br of {
bb_name : string;
succ : Expr.t;
}
| CondBr of {
cond : Expr.t;
succ0 : Expr.t;
succ1 : Expr.t;
| Switch of {
default_succ : Expr.t;
succ : (Expr.t * Expr.t) list;
| Ret of {
ret : Expr.t;
| Exit of {
| CallSite of {
callee : string;
args : Expr.t list;
| Other
val pp_switch_succ : Stdlib.Format.formatter -> (Expr.t * Expr.t) list -> unit
val pp : Stdlib.Format.formatter -> t -> unit