(***********************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* frozen_t val unfreeze : frozen_t -> unit val init : unit -> unit type all_grammar_command = | AstGrammar of grammar_command | TacticGrammar of (string * (string * grammar_production list) * Tacexpr.raw_tactic_expr) list val extend_grammar : all_grammar_command -> unit (* Add grammar rules for tactics *) type grammar_tactic_production = | TacTerm of string | TacNonTerm of loc * (Gramext.g_symbol * Genarg.argument_type) * string option val extend_tactic_grammar : string -> (string * grammar_tactic_production list) list -> unit val extend_vernac_command_grammar : string -> (string * grammar_tactic_production list) list -> unit