module Jslib_lexer:sig
..end
type
token =
| |
KEYWORD of |
| |
IDENT of |
| |
INT of |
| |
FLOAT of |
| |
HEX of |
| |
STRING of |
| |
REGEXP of |
| |
ANTIQUOT of |
| |
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