PyIR.Terminator
type node_call = {
label : NodeName.t;
ssa_args : Exp.t list;
}
type t =
| Return of Exp.t
| Jump of node_call
| If of {
exp : Exp.t;
then_ : node_call;
else_ : node_call;
| Throw of Exp.t