Module Graph.Dot_ast
AST for DOT file format.
type id =
| Ident of string
| Number of string
| String of string
| Html of string
type attr = (id * id option) list
type compass_pt =
| N
| Ne
| E
| Se
| S
| Sw
| W
| Nw
type node_id = id * port option
type subgraph =
| SubgraphId of id
| SubgraphDef of id option * stmt list
type file = {
strict : bool;
digraph : bool;
id : id option;
stmts : stmt list;
}