module Parser:sig..end
type float_type =
| |
Single |
| |
Date |
| |
Extended of |
| |
Currency |
type token =
| |
ToEOF |
| |
ToSymbol of |
| |
ToString of |
| |
ToInteger of |
| |
ToFloat of |
| |
ToWString of |
| |
ToChar of |
| |
ToBinary of |
exception Error of int * string
type t
val error : t -> string -> 'aval skip_blanks : t -> unitval next_token : t -> unitval create : char Stream.t -> tval source_line : t -> intval token : t -> tokenval token_symbol_is : t -> string -> boolval token_char_is : t -> char -> bool