X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftranscript%2Ftypes.ml;h=f0c8212bc47c3271c94045d895592f3a785aacbc;hb=298868e07163c21863d542136733d24bfbec2482;hp=e51122b3f20e3aaa0788c4af47a123f373f72b0e;hpb=438a29376390222b94c1fe9772917c3aad50d42e;p=helm.git diff --git a/helm/software/components/binaries/transcript/types.ml b/helm/software/components/binaries/transcript/types.ml index e51122b3f..f0c8212bc 100644 --- a/helm/software/components/binaries/transcript/types.ml +++ b/helm/software/components/binaries/transcript/types.ml @@ -23,17 +23,26 @@ * http://cs.unibo.it/helm/. *) +type local = bool + type inline_kind = Con | Ind | Var +type output_kind = Declarative | Procedural + +type source = string + +type prefix = string + type item = Heading of (string * int) | Line of string | Comment of string | Unexport of string | BaseUri of string | Include of string - | Coercion of string - | Notation of string - | Inline of (inline_kind * string) + | Coercion of (local * string) + | Notation of (local * string) + | Section of (local * string * string) + | Inline of (local * inline_kind * source * prefix) | Verbatim of string | Discard of string