Module Textual.Node

type t = {
  1. label : NodeName.t;
  2. ssa_parameters : (Ident.t * Typ.t) list;
  3. exn_succs : NodeName.t list;
    (*

    successor exception nodes

    *)
  4. last : Terminator.t;
  5. instrs : Instr.t list;
  6. last_loc : Location.t;
    (*

    location of last instruction in file

    *)
  7. label_loc : Location.t;
    (*

    location of label in file

    *)
}
include Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equal