package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type node =
  1. | Function of string
  2. | Method of string * string
  3. | File of Common.filename
  4. | FakeRoot
type callgraph = (node, node Set_.t) Map_.t
val add_graph : node -> node -> callgraph -> callgraph
val union_graph : callgraph -> callgraph -> callgraph
val string_of_node : node -> string
val node_of_string : string -> node