blob: b8b79ed7f38de045137e2f25a8e0de9af6ce9cb5 (
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
27
28
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *)
(* <O___,, * (see CREDITS file for the list of authors) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
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
|