X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftranscript%2Fgrafite.ml;h=ef2105afb17756217de25c55437f3285d18b458d;hb=298868e07163c21863d542136733d24bfbec2482;hp=1616c18a9a5f5c467ab997a155b14e773792d428;hpb=ca41435a6021292ccba239aa173651c0be705b45;p=helm.git diff --git a/helm/software/components/binaries/transcript/grafite.ml b/helm/software/components/binaries/transcript/grafite.ml index 1616c18a9..ef2105afb 100644 --- a/helm/software/components/binaries/transcript/grafite.ml +++ b/helm/software/components/binaries/transcript/grafite.ml @@ -81,15 +81,19 @@ let require value = let coercion value = command_of_obj (G.Coercion (floc, UM.uri_of_string value, true, 0, 0)) -let inline (uri, prefix) = - command_of_macro (G.Inline (floc, G.Declarative, uri, prefix)) +let inline (kind, uri, prefix) = + let kind = match kind with + | T.Declarative -> G.Declarative + | T.Procedural -> G.Procedural None + in + command_of_macro (G.Inline (floc, kind, uri, prefix)) let out_alias och name uri = Printf.fprintf och "alias id \"%s\" = \"%s\".\n\n" name uri -let commit och items = +let commit kind och items = let trd (_, _, x) = x in - let trd_rth (_, _, x, y) = x, y in + let trd_rth kind (_, _, x, y) = kind, x, y in let commit = function | T.Heading heading -> out_preamble och heading | T.Line line -> out_line_comment och line @@ -98,7 +102,7 @@ let commit och items = | T.Coercion specs -> out_unexported och "COERCION" (snd specs) | T.Notation specs -> out_unexported och "NOTATION" (snd specs) (**) | T.Inline (_, T.Var, src, _) -> out_alias och (UriManager.name_of_uri (UriManager.uri_of_string src)) src - | T.Inline specs -> out_command och (inline (trd_rth specs)) + | T.Inline specs -> out_command och (inline (trd_rth kind specs)) | T.Section specs -> out_unexported och "UNEXPORTED" (trd specs) | T.Comment comment -> out_comment och comment | T.Unexport unexport -> out_unexported och "UNEXPORTED" unexport