class tokeniser : Flx_parse.token list ->
object
.. end
val mutable current_token_index : int
val mutable tokens : Flx_parse.token list
val mutable tokens_copy : Flx_parse.token list
method report_syntax_error : unit
method put_back : Flx_parse.token -> unit
method get_loc : Flx_ast.range_srcref
method token_src : Lexing.lexbuf -> Flx_parse.token
method token_peek : Lexing.lexbuf -> Flx_parse.token
method parse_user_statement : string ->
Flx_ast.range_srcref ->
(Flx_parse.token list * Flx_ast.ast_term_t) list ->
(string, (Flx_parse.token list * Flx_ast.ast_term_t) list) Hashtbl.t ->
Flx_ast.statement_t