Module Textual.QualifiedProcName

type enclosing_class =
  1. | TopLevel
  2. | Enclosing of TypeName.t
type t = {
  1. enclosing_class : enclosing_class;
  2. name : ProcName.t;
}
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
include Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equal
include Ppx_hash_lib.Hashable.S with type t := t
val hash_fold_t : t Base__Ppx_hash_lib.hash_fold
val hash : t -> Base__Ppx_hash_lib.Std.Hash.hash_value
val pp : F.formatter -> t -> unit
val name : t -> ProcName.t
val contains_wildcard : t -> bool
module Hashtbl : Hashtbl.S with type key = t