The branch, master has been updated
via f0fdfe2d60b6419e7f83e18326f47c90f825b24b (commit)
from f7b6c2bc40d70920bba87539a5e068be995d34b6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f0fdfe2d60b6419e7f83e18326f47c90f825b24b
Author: Erick Tryzelaar <idad...@users.sourceforge.net>
Date: Thu Oct 21 08:05:47 2010 -0700
Remove flx_parse.mli.
diff --git a/src/compiler/flx_parse/flx_parse.mli b/src/compiler/flx_parse/flx_parse.mli
deleted file mode 100644
index e5ecdba..0000000
--- a/src/compiler/flx_parse/flx_parse.mli
+++ /dev/null
@@ -1,41 +0,0 @@
-type 'a parser_state_t =
- (Flx_ast.statement_t -> 'a -> 'a) *
- 'a *
- Flx_token.local_data_t
-
-(** Create a new parser state. *)
-val make_parser_state:
- (Flx_ast.statement_t -> 'a -> 'a) -> (** A function that folds statements. *)
- 'a -> (** Initial data to fold. *)
- 'a parser_state_t
-
-(** Extract the current compliation unit from the parser state. *)
-val parser_data: 'a parser_state_t -> 'a
-
-(** Parse a channel and return the new parser state. *)
-val parse_channel:
- ?name:string -> (** The optional name for this channel. *)
- 'a parser_state_t -> (** The state for the felix parser. *)
- in_channel -> (** The channel to parse. *)
- 'a parser_state_t
-
-(** Parse a file and return the new parser state. *)
-val parse_file:
- ?include_dirs: string list ->
- 'a parser_state_t -> (** The state for the felix parser. *)
- string -> (** The filename to parse. *)
- 'a parser_state_t
-
-(** Parse a string and return the new parser state. *)
-val parse_string:
- ?name:string -> (** The optional name for this string. *)
- 'a parser_state_t -> (** The state for the felix parser. *)
- string -> (** The string to parse. *)
- 'a parser_state_t
-
-(** Parse a function and return the new parser state. *)
-val parse_function:
- ?name:string -> (** The optional name for this string. *)
- 'a parser_state_t -> (** The state for the felix parser. *)
- (string -> int -> int) -> (** The lexer function generator. *)
- 'a parser_state_t
-----------------------------------------------------------------------
Summary of changes:
src/compiler/flx_parse/flx_parse.mli | 41 ----------------------------------
1 files changed, 0 insertions(+), 41 deletions(-)
delete mode 100644 src/compiler/flx_parse/flx_parse.mli
hooks/post-receive
--
An advanced programming language