move Dom.JoinState to its own file

Summary:public
Will be needed later to avoid circular dependencies between dom.ml and upcoming
numericalDomain.ml.

Reviewed By: jberdine

Differential Revision: D3126697

fb-gh-sync-id: 678d49f
fbshipit-source-id: 678d49f
master
Jules Villard 9 years ago committed by Facebook Github Bot 0
parent 031f433b15
commit 660250dcf7

@ -16,23 +16,6 @@ module F = Format
let (++) = Sil.Int.add
let (--) = Sil.Int.sub
(** {2 Object representing the status of the join operation} *)
module JoinState : sig
type mode = Pre | Post
val get_footprint : unit -> bool
val set_footprint : bool -> unit
end = struct
type mode = Pre | Post
let footprint = ref false (* set to true when we are doing join of footprints *)
let get_footprint () = !footprint
let set_footprint b = footprint := b
end
(** {2 Utility functions for ids} *)
let can_rename id =

@ -0,0 +1,21 @@
(*
* Copyright (c) 2016 - present Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*)
(** Object representing the status of the join operation *)
type mode =
| Pre
| Post
(** set to true when we are doing join of footprints *)
let footprint = ref false
let get_footprint () = !footprint
let set_footprint b = footprint := b

@ -0,0 +1,17 @@
(*
* Copyright (c) 2016 - present Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*)
(** Object representing the status of the join operation *)
type mode =
| Pre
| Post
val get_footprint : unit -> bool
val set_footprint : bool -> unit
Loading…
Cancel
Save