X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_notation%2Ftest_lexer.ml;h=569e86e442ae20383cb7b63a6ce1769391f1fa23;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=386c0f1b98b19b21433e8169f9eacd67f0f7cfa4;hpb=4a7dd5f16ad7a3ac176c0650580f736ae73f373d;p=helm.git diff --git a/helm/ocaml/cic_notation/test_lexer.ml b/helm/ocaml/cic_notation/test_lexer.ml index 386c0f1b9..569e86e44 100644 --- a/helm/ocaml/cic_notation/test_lexer.ml +++ b/helm/ocaml/cic_notation/test_lexer.ml @@ -24,18 +24,28 @@ *) let _ = - let level = ref ~-1 in + let level = ref "2@" in let ic = ref stdin in - let arg_spec = [] in - let usage = "test_lexer [ file ]" in + let arg_spec = [ "-level", Arg.Set_string level, "set the notation level" ] in + let usage = "test_lexer [ -level level ] [ file ]" in let open_file fname = if !ic <> stdin then close_in !ic; ic := open_in fname in Arg.parse arg_spec open_file usage; - let lexer = CicNotationLexer.notation_lexer in - let token_stream = fst (lexer.Token.tok_func (Stream.of_channel !ic)) in - Printf.printf "Lexing notation level %d\n" !level; flush stdout; + let lexer = + match !level with + "1" -> CicNotationLexer.level1_pattern_lexer + | "2@" -> CicNotationLexer.level2_ast_lexer + | "2$" -> CicNotationLexer.level2_meta_lexer + | l -> + prerr_endline (Printf.sprintf "Unsupported level %s" l); + exit 2 + in + let token_stream = + fst (lexer.Token.tok_func (Obj.magic (Ulexing.from_utf8_channel !ic))) + in + Printf.printf "Lexing notation level %s\n" !level; flush stdout; let rec dump () = let (a,b) = Stream.next token_stream in if a = "EOI" then raise Stream.Failure;