blob: 0ed1d28f3779d6a7f1435c0d21d78cdc1a1608be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2017 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
type t = Obj.t
let obj = Obj.new_block Obj.closure_tag 0
(** This is an empty closure block. In the current implementation, it is
sufficient to allow marshalling but forbid equality. Sadly still allows
hash. *)
(** FIXME : use custom blocks somehow. *)
module type Obj = sig type t end
module Make(M : Obj) =
struct
type canary = t
type t = (canary * M.t)
let prj (_, x) = x
let inj x = (obj, x)
end
|