package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Flag = Flag_parsing
type token =
  1. | TComment of Parse_info.t
  2. | TCommentSpace of Parse_info.t
  3. | TCommentNewline of Parse_info.t
  4. | TWord of string * Parse_info.t
  5. | TNumber of string * Parse_info.t
  6. | TUnit of string * Parse_info.t
  7. | TSymbol of string * Parse_info.t
  8. | TCommand of string * Parse_info.t
  9. | TOBrace of Parse_info.t
  10. | TCBrace of Parse_info.t
  11. | TOBracket of Parse_info.t
  12. | TCBracket of Parse_info.t
  13. | TFootnote of char * Parse_info.t
  14. | TBeginVerbatim of Parse_info.t
  15. | TEndVerbatim of Parse_info.t
  16. | TVerbatimLine of string * Parse_info.t
  17. | TBeginNowebChunk of Parse_info.t
  18. | TEndNowebChunk of Parse_info.t
  19. | TNowebChunkStr of string * Parse_info.t
  20. | TNowebChunkName of string * Parse_info.t
  21. | TNowebCode of string * Parse_info.t
  22. | TUnknown of Parse_info.t
  23. | EOF of Parse_info.t
val tok : Lexing.lexbuf -> string
val tokinfo : Lexing.lexbuf -> Parse_info.t
val error : string -> Lexing.lexbuf -> unit
type state_mode =
  1. | INITIAL
  2. | IN_VERBATIM of string
  3. | IN_NOWEB_CHUNK
val default_state : state_mode
val _mode_stack : state_mode list ref
val reset : unit -> unit
val current_mode : unit -> state_mode
val push_mode : state_mode -> unit
val pop_mode : unit -> unit
val __ocaml_lex_tables : Stdlib.Lexing.lex_tables
val tex : Lexing.lexbuf -> token
val __ocaml_lex_tex_rec : Lexing.lexbuf -> int -> token
val noweb : Lexing.lexbuf -> token
val __ocaml_lex_noweb_rec : Lexing.lexbuf -> int -> token
val verbatim : 'a -> Lexing.lexbuf -> token
val __ocaml_lex_verbatim_rec : 'a -> Lexing.lexbuf -> int -> token