Cobol_cfg.Types
module NEL = Cobol_common.Basics.NEL
type node_type =
| External of string
| Entry of [ `Point | `Paragraph | `Section of string | `Statement of string ]
| Normal of string * string
| Collapsed of string NEL.t
| Split of string
type node = {
id : int;
section_name : string;
loc : Cobol_common.Srcloc.TYPES.srcloc option;
typ : node_type;
jumps : Cobol_cfg__.Cfg_jumps.Jumps.t;
will_fallthru : bool;
terminal : bool;
}
module Node : sig ... end
module Edge : sig ... end
module Cfg : sig ... end