package caml2html

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token = [
  1. | `Comment of string
  2. | `Construct of string
  3. | `Keyword of string
  4. | `Newline
  5. | `Quotation of string
  6. | `Special_comment of string * string
  7. | `Start_annot of Annot.layer_info * string
  8. | `Stop_annot of Annot.layer_info
  9. | `String of string
  10. | `Tab
  11. | `Token of string
]
val parse : ?annot:Annot.tag list -> Lexing.lexbuf -> token list
val string : ?filename:string -> ?annot:Annot.tag list -> string -> token list
val channel : ?filename:string -> ?annot:Annot.tag list -> Pervasives.in_channel -> token list
val file : ?annot:Annot.tag list -> string -> token list