aboutsummaryrefslogtreecommitdiff
path: root/checker/values.mli
diff options
context:
space:
mode:
authorMaxime Dénès2018-01-12 14:32:43 -0800
committerMaxime Dénès2018-01-12 14:32:43 -0800
commit13dc988771fe3db8df1cc73900a897549cd10e17 (patch)
treea0f7f586c8aa74da49e09dd805d1a43023fc0f24 /checker/values.mli
parent3815ec5405976196ff79b6960e65ce5adda66205 (diff)
parent72750482070355baf4df6977da75c5448b2b994d (diff)
Merge PR #6288: Interfaces for checker and IDE.
Diffstat (limited to 'checker/values.mli')
-rw-r--r--checker/values.mli26
1 files changed, 26 insertions, 0 deletions
diff --git a/checker/values.mli b/checker/values.mli
new file mode 100644
index 0000000000..aad8fd5f45
--- /dev/null
+++ b/checker/values.mli
@@ -0,0 +1,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 value =
+ | Any
+ | Fail of string
+ | Tuple of string * value array
+ | Sum of string * int * value array array
+ | Array of value
+ | List of value
+ | Opt of value
+ | Int
+ | String
+ | Annot of string * value
+ | Dyn
+
+val v_univopaques : value
+val v_libsum : value
+val v_lib : value
+val v_opaques : value
+val v_stm_seg : value