blob: cf93c7e200bbdf96b615b25bdee93da5d4a82f9b (
plain)
1
2
3
4
5
6
7
8
|
type t
val start : t -> unit
val buffer : t -> Sedlexing.lexbuf
val positions : t -> Lexing.position * Lexing.position
val content : t -> string
val from_lexbuf : Sedlexing.lexbuf -> t
val tokenize : (t -> 'a) -> t -> unit -> 'a * Lexing.position * Lexing.position
|