package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TComment of Ast_html.info
  2. | TDoctype of Ast_html.info
  3. | TPi of Ast_html.info
  4. | Lelement of Ast_html.info * string
  5. | Lelementend of Ast_html.info * string
  6. | Relement of Ast_html.info
  7. | Relement_empty of Ast_html.info
  8. | Cdata of Ast_html.info * string
  9. | CdataSpecial of Ast_html.info * string
  10. | Space of Ast_html.info * string
  11. | Name of Ast_html.info * string
  12. | Eq of Ast_html.info
  13. | Literal of Ast_html.info * string
  14. | Other of Ast_html.info
  15. | EOF of Ast_html.info
val main : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> unit