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.

37 lines
1.5 KiB

(*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
open! IStd
(** Functionality for evaluating typestates after class initialization.
Nullsafe's notion of initialization augments Java's one in the following way:
1. A method is considered "initializer" if it is either marked as @Initializer or is in
the list of known initializer methods (e.g. onCreate()).
2. For each constructor, Nullsafe assumes all initializer methods will be called after
the constructor is called. (Nullsafe does not check if this assumption is indeed true).
3. Nullsafe uses assumption 2, in order to check if class fields were initialized or not.
(a non-nullable field is considered not initialized if it is not initialized in at least
one constructor).
*)
val final_initializer_typestates_lazy :
Tenv.t
-> Typ.Procname.t
-> Procdesc.t
-> (Typ.Procname.t -> Typ.Procname.t list)
-> (bool -> Typ.Procname.t -> Procdesc.t -> 'a option -> 'b * 'c option)
-> (Typ.Procname.t * 'c) list lazy_t
(** Typestates after the current constructor and all initializer procedures. *)
val final_constructor_typestates_lazy :
Tenv.t
-> Typ.Procname.t
-> (Typ.Procname.t -> Typ.Procname.t list)
-> (bool -> Typ.Procname.t -> Procdesc.t -> 'a option -> 'b * 'c option)
-> (Typ.Procname.t * 'c) list lazy_t
(** Typestates after all constructors. *)