aboutsummaryrefslogtreecommitdiff
path: root/ltac/tacarg.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-10-06 16:59:27 +0200
committerPierre-Marie Pédrot2017-02-17 11:52:38 +0100
commit653de32139ecee3114779a5ee2961c58793889e5 (patch)
tree5afe95bfaa5af025f92e9aea27147862487c0fb0 /ltac/tacarg.ml
parentbcb634d070519d6e37d9b7d39f12437a7d38f0c2 (diff)
Ltac as a plugin.
This commit is essentially moving files around. In particular, the corresponding plugin still relies on a mllib file rather than a mlpack one. Otherwise, this causes link-time issues for third-party plugins depending on modules defined in the Ltac plugin.
Diffstat (limited to 'ltac/tacarg.ml')
-rw-r--r--ltac/tacarg.ml26
1 files changed, 0 insertions, 26 deletions
diff --git a/ltac/tacarg.ml b/ltac/tacarg.ml
deleted file mode 100644
index 42552c4846..0000000000
--- a/ltac/tacarg.ml
+++ /dev/null
@@ -1,26 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-(** Generic arguments based on Ltac. *)
-
-open Genarg
-open Geninterp
-open Tacexpr
-
-let make0 ?dyn name =
- let wit = Genarg.make0 name in
- let () = Geninterp.register_val0 wit dyn in
- wit
-
-let wit_tactic : (raw_tactic_expr, glob_tactic_expr, Val.t) genarg_type =
- make0 "tactic"
-
-let wit_ltac = make0 ~dyn:(val_tag (topwit Stdarg.wit_unit)) "ltac"
-
-let wit_destruction_arg =
- make0 "destruction_arg"