You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
477 B
26 lines
477 B
9 years ago
|
(*
|
||
6 years ago
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
9 years ago
|
*
|
||
7 years ago
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
9 years ago
|
*)
|
||
|
|
||
8 years ago
|
open! IStd
|
||
9 years ago
|
module F = Format
|
||
|
|
||
8 years ago
|
type t [@@deriving compare]
|
||
9 years ago
|
|
||
|
val equal : t -> t -> bool
|
||
|
|
||
5 years ago
|
val pname : t -> Procname.t
|
||
9 years ago
|
|
||
|
val loc : t -> Location.t
|
||
|
|
||
5 years ago
|
val make : Procname.t -> Location.t -> t
|
||
9 years ago
|
|
||
|
val dummy : t
|
||
|
|
||
|
val pp : F.formatter -> t -> unit
|
||
|
|
||
|
module Set : PrettyPrintable.PPSet with type elt = t
|