X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAstPp.ml;h=eddac97464f4e0b595d0fe7fbe4c17d297f31d6e;hb=948bb5d710c5d7f3185b6fef76c8e71f247cc664;hp=2cd7a4f4fcddfee286d115b84ff79c5a18cee9ad;hpb=4442acec319822fbc4eb2e873808dbfc1893f390;p=helm.git diff --git a/helm/software/components/grafite/grafiteAstPp.ml b/helm/software/components/grafite/grafiteAstPp.ml index 2cd7a4f4f..eddac9746 100644 --- a/helm/software/components/grafite/grafiteAstPp.ml +++ b/helm/software/components/grafite/grafiteAstPp.ml @@ -362,6 +362,13 @@ let pp_ncommand = function | NUnivConstraint (_) -> "not supported" | NCoercion (_) -> "not supported" | NQed (_) -> "nqed" + | NCopy (_,name,uri,map) -> + "copy " ^ name ^ " from " ^ NUri.string_of_uri uri ^ " with " ^ + String.concat " and " + (List.map + (fun (a,b) -> NUri.string_of_uri a ^ " ↦ " ^ NUri.string_of_uri b) + map) +;; let pp_command ~term_pp ~obj_pp = function | Index (_,_,uri) -> "Indexing " ^ UriManager.string_of_uri uri