diff options
| author | coqbot-app[bot] | 2020-10-09 19:38:17 +0000 |
|---|---|---|
| committer | GitHub | 2020-10-09 19:38:17 +0000 |
| commit | 516a7009b08c443a74ef7f3175fff1337e71b668 (patch) | |
| tree | b0beb336972d617091a22d84ecaa1bc8890f0146 /plugins/ltac/tacinterp.mli | |
| parent | ac7c197c3b8a9b66956f35e364221938f91e2a23 (diff) | |
| parent | 391e75136df3eab27a315c7fc383a8eca73ec969 (diff) | |
Merge PR #13088: [stm] move par: to comTactic
Reviewed-by: SkySkimmer
Reviewed-by: ppedrot
Reviewed-by: ejgallego
Diffstat (limited to 'plugins/ltac/tacinterp.mli')
| -rw-r--r-- | plugins/ltac/tacinterp.mli | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/ltac/tacinterp.mli b/plugins/ltac/tacinterp.mli index cbb17bf0fa..01d7306c9d 100644 --- a/plugins/ltac/tacinterp.mli +++ b/plugins/ltac/tacinterp.mli @@ -126,8 +126,12 @@ val interp_tac_gen : value Id.Map.t -> Id.Set.t -> val interp : raw_tactic_expr -> unit Proofview.tactic (** Hides interpretation for pretty-print *) +type tactic_expr = { + global: bool; + ast: Tacexpr.raw_tactic_expr; +} -val hide_interp : bool -> raw_tactic_expr -> unit Proofview.tactic option -> unit Proofview.tactic +val hide_interp : tactic_expr ComTactic.tactic_interpreter (** Internals that can be useful for syntax extensions. *) |
