Module ATDGenerated.Specialized_call_graph_t
type node = {name : string;context : int;
}type location = {file : string;line : int;col : int;
}type callee = {call_location : location;callee : int;
}type edge = {caller : node;callees : callee list;
}type call_graph = {edges : edge list;contexts : string list;
}