1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-07-02 09:47:24 -07:00
|
|
|
val token: Lexing.lexbuf -> Parsecmm.token
|
|
|
|
|
|
|
|
type error =
|
|
|
|
Illegal_character
|
|
|
|
| Unterminated_comment
|
|
|
|
| Unterminated_string
|
|
|
|
|
|
|
|
exception Error of error
|
|
|
|
|
|
|
|
val report_error: Lexing.lexbuf -> error -> unit
|