Module Jslib_lexer


module Jslib_lexer: sig .. end


type token =
| KEYWORD of string
| IDENT of string
| INT of string
| FLOAT of string
| HEX of string
| STRING of string * bool
| REGEXP of string
| ANTIQUOT of string * string
| EOI
module Loc: Loc  with type t = Camlp4.PreCast.Loc.t
module Token: Token  with module Loc = Loc and type t = token
module Error: Camlp4.Sig.Error 
val mk : unit ->
Loc.t ->
char Stream.t -> (Token.t * Loc.t) Stream.t