Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type token = [
| `Comment of string
| `Construct of string
| `Keyword of string
| `Newline
| `Quotation of string
| `Special_comment of string * string
| `Start_annot of Annot.layer_info * string
| `Stop_annot of Annot.layer_info
| `String of string
| `Tab
| `Token of string
]
val parse : ?annot:Annot.tag list -> Lexing.lexbuf -> token list
val channel :
?filename:string ->
?annot:Annot.tag list ->
Pervasives.in_channel ->
token list