aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/coqast.mli
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/coqast.mli')
-rw-r--r--parsing/coqast.mli3
1 files changed, 2 insertions, 1 deletions
diff --git a/parsing/coqast.mli b/parsing/coqast.mli
index 219e04f03..fcb029319 100644
--- a/parsing/coqast.mli
+++ b/parsing/coqast.mli
@@ -26,6 +26,7 @@ type t =
| Str of loc * string
| Id of loc * string
| Path of loc * kernel_name
+ | ConPath of loc * constant
| Dynamic of loc * Dyn.t
(* returns the list of metas occuring in the ast *)
@@ -38,7 +39,7 @@ val subst_meta : (int * t) list -> t -> t
(* hash-consing function *)
val hcons_ast:
(string -> string) * (Names.identifier -> Names.identifier)
- * (kernel_name -> kernel_name)
+ * (kernel_name -> kernel_name) * (constant -> constant)
-> (t -> t) * (loc -> loc)
val subst_ast: Names.substitution -> t -> t