summaryrefslogtreecommitdiff
path: root/toplevel/metasyntax.mli
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@debian.org>2018-12-29 14:31:27 -0500
committerGravatar Benjamin Barenblat <bbaren@debian.org>2018-12-29 14:31:27 -0500
commit9043add656177eeac1491a73d2f3ab92bec0013c (patch)
tree2b0092c84bfbf718eca10c81f60b2640dc8cab05 /toplevel/metasyntax.mli
parenta4c7f8bd98be2a200489325ff7c5061cf80ab4f3 (diff)
Imported Upstream version 8.8.2upstream/8.8.2
Diffstat (limited to 'toplevel/metasyntax.mli')
-rw-r--r--toplevel/metasyntax.mli60
1 files changed, 0 insertions, 60 deletions
diff --git a/toplevel/metasyntax.mli b/toplevel/metasyntax.mli
deleted file mode 100644
index 085cc87c..00000000
--- a/toplevel/metasyntax.mli
+++ /dev/null
@@ -1,60 +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 *)
-(************************************************************************)
-
-open Names
-open Tacexpr
-open Vernacexpr
-open Notation
-open Constrexpr
-open Notation_term
-
-val add_token_obj : string -> unit
-
-(** Adding a (constr) notation in the environment*)
-
-val add_infix : locality_flag -> (lstring * syntax_modifier list) ->
- constr_expr -> scope_name option -> unit
-
-val add_notation : locality_flag -> constr_expr ->
- (lstring * syntax_modifier list) -> scope_name option -> unit
-
-val add_notation_extra_printing_rule : string -> string -> string -> unit
-
-(** Declaring delimiter keys and default scopes *)
-
-val add_delimiters : scope_name -> string -> unit
-val remove_delimiters : scope_name -> unit
-val add_class_scope : scope_name -> scope_class list -> unit
-
-(** Add only the interpretation of a notation that already has pa/pp rules *)
-
-val add_notation_interpretation :
- (lstring * constr_expr * scope_name option) -> unit
-
-(** Add a notation interpretation for supporting the "where" clause *)
-
-val set_notation_for_interpretation : Constrintern.internalization_env ->
- (lstring * constr_expr * scope_name option) -> unit
-
-(** Add only the parsing/printing rule of a notation *)
-
-val add_syntax_extension :
- locality_flag -> (lstring * syntax_modifier list) -> unit
-
-(** Add a syntactic definition (as in "Notation f := ...") *)
-
-val add_syntactic_definition : Id.t -> Id.t list * constr_expr ->
- bool -> Flags.compat_version option -> unit
-
-(** Print the Camlp4 state of a grammar *)
-
-val pr_grammar : string -> Pp.std_ppcmds
-
-val check_infix_modifiers : syntax_modifier list -> unit
-
-val with_syntax_protection : ('a -> 'b) -> 'a -> 'b