]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/matitaEngine.mli
update in lambdadelta
[helm.git] / matita / matita / matitaEngine.mli
index 2639f1d046e760333804964d2aea256b29cf2fa0..2b8d9fd8c7708722fb45ec6d33f722b72623bd20 100644 (file)
  * http://helm.cs.unibo.it/
  *)
 
+exception TryingToAdd of string Lazy.t
+exception EnrichedWithStatus of exn * GrafiteTypes.status
+exception AlreadyLoaded of string Lazy.t
+exception FailureCompiling of string * exn
+exception CircularDependency of string
+
+class status:
+ string ->
+  object
+   inherit GrafiteTypes.status
+   inherit ApplyTransformation.status
+  end
+
+val get_ast:
+ GrafiteTypes.status -> include_paths:string list -> GrafiteParser.parsable ->
+  GrafiteAst.statement
+
+(* heavy checks slow down the compilation process but give you some interesting
+ * infos like if the theorem is a duplicate *)
 val eval_ast :
   include_paths: string list ->
   ?do_heavy_checks:bool ->
@@ -32,15 +51,8 @@ val eval_ast :
   (GrafiteTypes.status *
    (DisambiguateTypes.domain_item * GrafiteAst.alias_spec) option) list
 
+val assert_ng: include_paths:string list -> string -> bool
 
-(* heavy checks slow down the compilation process but give you some interesting
- * infos like if the theorem is a duplicate *)
-
-exception EnrichedWithStatus of exn * GrafiteTypes.status
-
-(* should be used only by the compiler since it looses the
-   * disambiguation_context (text,prefix_len,_) *)
-val eval_from_stream :
-  include_paths:string list -> ?do_heavy_checks:bool -> GrafiteTypes.status ->
-   Ulexing.lexbuf -> (GrafiteTypes.status -> GrafiteAst.statement -> unit) ->
-    GrafiteTypes.status
+(* given a path to a ma file inside the include_paths, returns the
+   new include_paths associated to that file *)
+val read_include_paths: include_paths:string list -> string -> string list