X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_annotations%2FcicAnnotationParser.ml;h=d8c67ea635b8d08926ba22acd1621ecfb31dfe1e;hb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;hp=9c4a58d5394eb4f4ea4558796b17caec9da2eaf9;hpb=5a92117eeff70048d29e91ba24e113155d956e1b;p=helm.git diff --git a/helm/ocaml/cic_annotations/cicAnnotationParser.ml b/helm/ocaml/cic_annotations/cicAnnotationParser.ml index 9c4a58d53..d8c67ea63 100644 --- a/helm/ocaml/cic_annotations/cicAnnotationParser.ml +++ b/helm/ocaml/cic_annotations/cicAnnotationParser.ml @@ -35,19 +35,17 @@ class warner = exception EmptyUri;; -let annotate filename ids_to_targets = +let get_annotations filename = let module Y = Pxp_yacc in try let d = let config = {Y.default_config with Y.warner = new warner} in Y.parse_document_entity config -(*PXP (Y.ExtID (Pxp_types.System filename, - new Pxp_reader.resolve_as_file ~url_of_id ())) -*) (PxpUriResolver.from_file filename) + (Y.from_file ~alt:[PxpUrlResolver.url_resolver] filename) Y.default_spec in - CicAnnotationParser2.annotate ids_to_targets d#root + CicAnnotationParser2.get_annotations d#root with e -> print_endline (Pxp_types.string_of_exn e) ;