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.
27 lines
664 B
27 lines
664 B
7 years ago
|
(*
|
||
|
* Copyright (c) 2018-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*)
|
||
|
open! IStd
|
||
|
module F = Format
|
||
6 years ago
|
|
||
|
module ClassLoad : ExplicitTrace.Element with type t = string
|
||
7 years ago
|
|
||
|
module Event : ExplicitTrace.TraceElem with type elem_t = ClassLoad.t
|
||
7 years ago
|
|
||
6 years ago
|
include AbstractDomain.WithBottom
|
||
7 years ago
|
|
||
6 years ago
|
type summary = t
|
||
7 years ago
|
|
||
|
val pp_summary : F.formatter -> summary -> unit
|
||
|
|
||
6 years ago
|
val mem_typename : Typ.Name.t -> t -> bool
|
||
|
|
||
|
val add_typename : Location.t -> t -> Typ.Name.t -> t
|
||
6 years ago
|
|
||
6 years ago
|
val integrate_summary : Typ.Procname.t -> Location.t -> t -> summary -> t
|
||
6 years ago
|
|
||
|
val iter : (Event.t -> unit) -> t -> unit
|