Files compil.ml? for compilation XPath -> ASTA
[tatoo.git] / src / test.ml
index df5b112..8b69fd8 100644 (file)
     only the first line of XPath_querie_file is read 
 *)
 
-module F = Formula
-module G = Asta
-
-(* to force ocaml build to add Formula to the dependency chain even if
-   we don't use it yet*)
 
 let doc =
   let fd = open_in Sys.argv.(1) in
@@ -42,8 +37,11 @@ let query =
 
 open Format
 
+let asta = Compil.trad query
+
 let () =
   fprintf err_formatter "Query: %a\n%!" XPath.Ast.print query;
+  fprintf err_formatter "Asta: %a\n%!" Asta.print asta;
   fprintf err_formatter "Document:\n%!";
   Tree.print_xml stderr doc (Tree.root doc);
   exit 0