diff options
author | Enrico Tassi <gareuselesinge@debian.org> | 2015-01-25 14:42:51 +0100 |
---|---|---|
committer | Enrico Tassi <gareuselesinge@debian.org> | 2015-01-25 14:42:51 +0100 |
commit | 7cfc4e5146be5666419451bdd516f1f3f264d24a (patch) | |
tree | e4197645da03dc3c7cc84e434cc31d0a0cca7056 /kernel/vm.mli | |
parent | 420f78b2caeaaddc6fe484565b2d0e49c66888e5 (diff) |
Imported Upstream version 8.5~beta1+dfsg
Diffstat (limited to 'kernel/vm.mli')
-rw-r--r-- | kernel/vm.mli | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/kernel/vm.mli b/kernel/vm.mli index 58228eb8..295ea83c 100644 --- a/kernel/vm.mli +++ b/kernel/vm.mli @@ -1,7 +1,6 @@ open Names open Term open Cbytecodes -open Cemitcodes (** Efficient Virtual Machine *) @@ -25,9 +24,9 @@ type vswitch type arguments type atom = - | Aid of id_key - | Aiddef of id_key * values - | Aind of inductive + | Aid of Vars.id_key + | Aiddef of Vars.id_key * values + | Aind of pinductive (** Zippers *) @@ -53,15 +52,9 @@ type whd = (** Constructors *) val val_of_str_const : structured_constant -> values - val val_of_rel : int -> values -val val_of_rel_def : int -> values -> values - -val val_of_named : identifier -> values -val val_of_named_def : identifier -> values -> values - -val val_of_constant : constant -> values -val val_of_constant_def : int -> constant -> values -> values +val val_of_named : Id.t -> values +val val_of_constant : pconstant -> values external val_of_annot_switch : annot_switch -> values = "%identity" |