summaryrefslogtreecommitdiff
path: root/tools/coqdep_lexer.mll
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2006-06-16 14:41:51 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2006-06-16 14:41:51 +0000
commite978da8c41d8a3c19a29036d9c569fbe2a4616b0 (patch)
tree0de2a907ee93c795978f3c843155bee91c11ed60 /tools/coqdep_lexer.mll
parent3ef7797ef6fc605dfafb32523261fe1b023aeecb (diff)
Imported Upstream version 8.0pl3+8.1betaupstream/8.0pl3+8.1beta
Diffstat (limited to 'tools/coqdep_lexer.mll')
-rwxr-xr-xtools/coqdep_lexer.mll40
1 files changed, 22 insertions, 18 deletions
diff --git a/tools/coqdep_lexer.mll b/tools/coqdep_lexer.mll
index f7f37086..8ecab3b4 100755
--- a/tools/coqdep_lexer.mll
+++ b/tools/coqdep_lexer.mll
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(*i $Id: coqdep_lexer.mll 5920 2004-07-16 20:01:26Z herbelin $ i*)
+(*i $Id: coqdep_lexer.mll 8737 2006-04-26 21:55:21Z herbelin $ i*)
{
@@ -18,7 +18,7 @@
type spec = bool
type coq_token =
- | Require of spec * string list
+ | Require of spec * string list list
| RequireString of spec * string
| Declare of string list
| Load of string
@@ -27,7 +27,8 @@
exception Fin_fichier
- let module_name = ref []
+ let module_current_name = ref []
+ let module_names = ref []
let ml_module_name = ref ""
let specif = ref false
@@ -48,13 +49,11 @@ let dot = '.' ( space+ | eof)
rule coq_action = parse
| "Require" space+
- { specif := false; opened_file lexbuf }
+ { specif := false; module_names := []; opened_file lexbuf }
| "Require" space+ "Export" space+
- { specif := false; opened_file lexbuf}
- | "Require" space+ "Syntax" space+
- { specif := false; opened_file lexbuf}
+ { specif := false; module_names := []; opened_file lexbuf}
| "Require" space+ "Import" space+
- { specif := false; opened_file lexbuf}
+ { specif := false; module_names := []; opened_file lexbuf}
| "Declare" space+ "ML" space+ "Module" space+
{ mllist := []; modules lexbuf}
| "Load" space+
@@ -175,7 +174,7 @@ and opened_file = parse
| "Specification"
{ specif := true; opened_file lexbuf }
| coq_ident
- { module_name := [Lexing.lexeme lexbuf];
+ { module_current_name := [Lexing.lexeme lexbuf];
opened_file_fields lexbuf }
| '"' [^'"']* '"' { (*'"'*)
@@ -186,23 +185,28 @@ and opened_file = parse
Filename.chop_suffix str ".v"
else str in
RequireString (!specif, str) }
- | eof { raise Fin_fichier }
- | _ { opened_file lexbuf }
+ | eof { raise Fin_fichier }
+ | _ { opened_file lexbuf }
and opened_file_fields = parse
| "(*" (* "*)" *)
{ comment_depth := 1; comment lexbuf;
opened_file_fields lexbuf }
| space+
- { opened_file_fields lexbuf }
+ { opened_file_fields lexbuf }
| coq_field
- { module_name :=
- field_name (Lexing.lexeme lexbuf) :: !module_name;
+ { module_current_name :=
+ field_name (Lexing.lexeme lexbuf) :: !module_current_name;
opened_file_fields lexbuf }
- | dot { Require (!specif, List.rev !module_name) }
- | eof { raise Fin_fichier }
- | _ { opened_file_fields lexbuf }
-
+ | coq_ident { module_names :=
+ List.rev !module_current_name :: !module_names;
+ module_current_name := [Lexing.lexeme lexbuf];
+ opened_file_fields lexbuf }
+ | dot { module_names :=
+ List.rev !module_current_name :: !module_names;
+ Require (!specif, List.rev !module_names) }
+ | eof { raise Fin_fichier }
+ | _ { opened_file_fields lexbuf }
and modules = parse
| space+ { modules lexbuf }