package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type entity_finder = (id_kind * string) -> Cst_php.entity list
val entity_finder_of_graph_code : ?check_dupes:bool -> Graph_code.graph -> Common.dirname -> entity_finder
type method_identifier = string * string
type id =
  1. | Id of int
type fullid = filepos
and filepos = {
  1. file : Common.filename;
  2. line : int;
  3. column : int;
}
val str_of_id : id -> string
val str_of_fullid : fullid -> string
val fullid_regexp : string
val fullid_of_string : string -> fullid
val filepos_of_parse_info : Parse_info.token_location -> filepos
val string_of_id_kind : id_kind -> string
val vof_filepos : filepos -> Ocaml.v