diff options
| author | Maxime Dénès | 2017-11-13 11:21:41 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-11-13 11:21:41 +0100 |
| commit | a7df689e73dd396dafdbb4891d534b7fa5cb0fc8 (patch) | |
| tree | 8682480b7dc5cc4557344490968166061e656b93 /intf | |
| parent | 1f9dcdee40d95ee56ef91876579f2c059939e04a (diff) | |
| parent | fb08d2d78c80f384e8ac2b7a9563b6c6720608f4 (diff) | |
Merge PR #6052: [general] Move Tactypes to `interp` + API reordering.
Diffstat (limited to 'intf')
| -rw-r--r-- | intf/intf.mllib | 1 | ||||
| -rw-r--r-- | intf/tactypes.ml | 33 |
2 files changed, 0 insertions, 34 deletions
diff --git a/intf/intf.mllib b/intf/intf.mllib index 523e4b2650..38a2a71cc0 100644 --- a/intf/intf.mllib +++ b/intf/intf.mllib @@ -3,7 +3,6 @@ Evar_kinds Genredexpr Locus Notation_term -Tactypes Decl_kinds Extend Glob_term diff --git a/intf/tactypes.ml b/intf/tactypes.ml deleted file mode 100644 index 2c42e13110..0000000000 --- a/intf/tactypes.ml +++ /dev/null @@ -1,33 +0,0 @@ -(************************************************************************) -(* 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 *) -(************************************************************************) - -(** Tactic-related types that are not totally Ltac specific and still used in - lower API. It's not clear whether this is a temporary API or if this is - meant to stay. *) - -open Loc -open Names -open Constrexpr -open Pattern -open Misctypes - -(** In globalize tactics, we need to keep the initial [constr_expr] to recompute - in the environment by the effective calls to Intro, Inversion, etc - The [constr_expr] field is [None] in TacDef though *) -type glob_constr_and_expr = Glob_term.glob_constr * constr_expr option -type glob_constr_pattern_and_expr = Id.Set.t * glob_constr_and_expr * constr_pattern - -type 'a delayed_open = Environ.env -> Evd.evar_map -> Evd.evar_map * 'a - -type delayed_open_constr = EConstr.constr delayed_open -type delayed_open_constr_with_bindings = EConstr.constr with_bindings delayed_open - -type intro_pattern = delayed_open_constr intro_pattern_expr located -type intro_patterns = delayed_open_constr intro_pattern_expr located list -type or_and_intro_pattern = delayed_open_constr or_and_intro_pattern_expr located -type intro_pattern_naming = intro_pattern_naming_expr located |
