Module Pcoq
The parser of Coq
module Parsable : sig ... endmodule Entry : sig ... endval parse_string : 'a Entry.t -> ?loc:Loc.t -> string -> 'aval eoi_entry : 'a Entry.t -> 'a Entry.tval map_entry : ('a -> 'b) -> 'a Entry.t -> 'b Entry.t
val get_univ : string -> gram_universeval create_universe : string -> gram_universeval new_entry : gram_universe -> string -> 'a Entry.tval uprim : gram_universeval uconstr : gram_universeval utactic : gram_universeval register_grammar : ('raw, 'glb, 'top) Genarg.genarg_type -> 'raw Entry.t -> unitval genarg_grammar : ('raw, 'glb, 'top) Genarg.genarg_type -> 'raw Entry.tval create_generic_entry : gram_universe -> string -> ('a, Genarg.rlevel) Genarg.abstract_argument_type -> 'a Entry.t
module Prim : sig ... endmodule Constr : sig ... endmodule Module : sig ... endval epsilon_value : ('a -> 'self) -> ('self, _, 'a) Extend.symbol -> 'self option
Extending the parser without synchronization
type gram_reinit= Gramlib.Gramext.g_assoc * Gramlib.Gramext.positionType of reinitialization data
type 'a single_extend_statement= string option * Gramlib.Gramext.g_assoc option * 'a Extend.production_rule listtype 'a extend_statement= Gramlib.Gramext.position option * 'a single_extend_statement list
val grammar_extend : 'a Entry.t -> gram_reinit option -> 'a extend_statement -> unitExtend the grammar of Coq, without synchronizing it with the backtracking mechanism. This means that grammar extensions defined this way will survive an undo.
Extending the parser with summary-synchronized commands
Extension with parsing rules
type extend_rule=|ExtendRule : 'a Entry.t * gram_reinit option * 'a extend_statement -> extend_ruletype 'a grammar_extension= 'a -> GramState.t -> extend_rule list * GramState.tGrammar extension entry point. Given some
'aand a current grammar state, such a function must produce the list of grammar extensions that will be applied in the same order and kept synchronized w.r.t. the summary, together with a new state. It should be pure.
val create_grammar_command : string -> 'a grammar_extension -> 'a grammar_commandCreate a new grammar-modifying command with the given name. The extension function is called to generate the rules for a given data.
val extend_grammar_command : 'a grammar_command -> 'a -> unitExtend the grammar of Coq with the given data.
Extension with parsing entries
type ('a, 'b) entry_extension= 'a -> GramState.t -> string list * GramState.tEntry extension entry point. Given some
'aand a current grammar state, such a function must produce the list of entry extensions that will be created and kept synchronized w.r.t. the summary, together with a new state. It should be pure.
val create_entry_command : string -> ('a, 'b) entry_extension -> ('a, 'b) entry_commandCreate a new entry-creating command with the given name. The extension function is called to generate the new entries for a given data.
val extend_entry_command : ('a, 'b) entry_command -> 'a -> 'b Entry.t listCreate new synchronized entries using the provided data.
val find_custom_entry : ('a, 'b) entry_command -> string -> 'b Entry.tFind an entry generated by the synchronized system in the current state.
- raises Not_found
if non-existent.
Protection w.r.t. backtrack
val parser_summary_tag : frozen_t Summary.Dyn.tag
val register_grammars_by_name : string -> any_entry list -> unitval find_grammars_by_name : string -> any_entry listval freeze : marshallable:bool -> frozen_tParsing state handling
val unfreeze : frozen_t -> unit