Module Parser_standard.Docstrings

val init : unit -> unit
val warn_bad_docstrings : unit -> unit
type docstring
val docstring : string -> Ocaml_common.Location.t -> docstring
val register : docstring -> unit
val docstring_body : docstring -> string
val docstring_loc : docstring -> Ocaml_common.Location.t
val set_pre_docstrings : Lexing.position -> docstring list -> unit
val set_post_docstrings : Lexing.position -> docstring list -> unit
val set_floating_docstrings : Lexing.position -> docstring list -> unit
val set_pre_extra_docstrings : Lexing.position -> docstring list -> unit
val set_post_extra_docstrings : Lexing.position -> docstring list -> unit
type docs = {
  1. docs_pre : docstring option;
  2. docs_post : docstring option;
}
val empty_docs : docs
val symbol_docs : unit -> docs
val symbol_docs_lazy : unit -> docs Lazy.t
val rhs_docs : int -> int -> docs
val rhs_docs_lazy : int -> int -> docs Lazy.t
val mark_symbol_docs : unit -> unit
val mark_rhs_docs : int -> int -> unit
type info = docstring option
val empty_info : info
val symbol_info : unit -> info
val rhs_info : int -> info
type text = docstring list
val empty_text : text
val empty_text_lazy : text Lazy.t
val symbol_text : unit -> text
val symbol_text_lazy : unit -> text Lazy.t
val rhs_text : int -> text
val rhs_text_lazy : int -> text Lazy.t
val symbol_pre_extra_text : unit -> text
val symbol_post_extra_text : unit -> text
val rhs_pre_extra_text : int -> text
val rhs_post_extra_text : int -> text
val rhs_post_text : int -> text
module WithMenhir : sig ... end