Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type error =
| Illegal_character of char
| Illegal_escape of string
| Unterminated_comment of Location.t
| Unterminated_string
| Unterminated_string_in_comment of Location.t * Location.t
| Keyword_as_label of string
| Literal_overflow of string
| Invalid_literal of string
exception Error of error * Location.t
val keyword_table : (string, Reason_parser.token) Hashtbl.t
val string_buff : bytes Pervasives.ref
val string_index : int Pervasives.ref
val store_lexeme : Lexing.lexbuf -> unit
val string_start_loc : Location.t Pervasives.ref
val comment_start_loc : Location.t list Pervasives.ref
val is_in_string : bool Pervasives.ref
val print_warnings : bool Pervasives.ref
val char_for_decimal_code : Lexing.lexbuf -> int -> char
val char_for_hexadecimal_code : Lexing.lexbuf -> int -> char
val update_loc : Lexing.lexbuf -> string option -> int -> bool -> int -> unit
val preprocessor :
((unit ->
unit)
* ((Lexing.lexbuf -> Reason_parser.token) ->
Lexing.lexbuf ->
Reason_parser.token))
option
Pervasives.ref
val warn_latin1 : Lexing.lexbuf -> unit
val report_error : Format.formatter -> error -> unit
val __ocaml_lex_token_rec : Lexing.lexbuf -> int -> Reason_parser.token
val comment : Lexing.lexbuf -> Location.t
val __ocaml_lex_comment_rec : Lexing.lexbuf -> int -> Location.t
val string : Lexing.lexbuf -> unit
val __ocaml_lex_string_rec : Lexing.lexbuf -> int -> unit
val quoted_string : string -> Lexing.lexbuf -> unit
val __ocaml_lex_quoted_string_rec : string -> Lexing.lexbuf -> int -> unit
val skip_sharp_bang : Lexing.lexbuf -> unit
val __ocaml_lex_skip_sharp_bang_rec : Lexing.lexbuf -> int -> unit
val token_with_comments : Lexing.lexbuf -> Reason_parser.token
val last_comments : (string * Location.t) list Pervasives.ref
val token : Lexing.lexbuf -> Reason_parser.token
val comments : unit -> (string * Location.t) list
val set_preprocessor :
(unit -> unit) ->
((Lexing.lexbuf -> Reason_parser.token) ->
Lexing.lexbuf ->
Reason_parser.token) ->
unit