]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic/cicParser2.mli
Merge of the V7_3_new_exportation branch.
[helm.git] / helm / ocaml / cic / cicParser2.mli
index be0a0005406411efd61d28bc69d68d52a36a5bdf..1d95f35ee358f3d98881f856ad0fdf846cb44fc9 100644 (file)
@@ -41,17 +41,12 @@ exception IllFormedXml of int
 exception NotImplemented
 
 (* This is the main function and also the only one used directly from *)
-(* cicParser. Given the root of the dom tree, it returns the internal *)
-(* representation of the cic object described in the tree             *)
+(* cicParser. Given the root of the dom tree and, possibly, also the  *)
+(* root of the dom tree of the constant body, it returns the internal *)
+(* representation of the cic object described in the tree(s).         *)
 (* It uses the previous functions and the to_cic_term method defined  *)
 (* in cicParser3 (used for subtrees that encode cic terms)            *)
 val get_term :
- < attribute : string -> Pxp_types.att_value;
-   node_type : Pxp_document.node_type;
-   sub_nodes : < attribute : string -> Pxp_types.att_value;
-                 node_type : Pxp_document.node_type;
-                 sub_nodes : CicParser3.cic_term Pxp_document.node list;
-                 .. >
-               list;
-   .. > ->
- Cic.annobj
+  CicParser3.cic_term Pxp_document.node ->
+  CicParser3.cic_term Pxp_document.node option ->
+  Cic.annobj