]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/matitaScript.mli
Some comments (new problems found).
[helm.git] / matita / matita / matitaScript.mli
index 5519e027ba102b5f96dad185e460780fdc48d7f2..0c12679f121586b926948d0f1d2a8bd6438f30f9 100644 (file)
@@ -84,13 +84,6 @@ object
   method loadFromFile : string -> unit
   method saveToFile : unit -> unit
 
-  (** {2 Current proof} (if any) *)
-
-  method stack: Continuationals.Stack.t       (** @raise Statement_error *)
-
-  method setGoal: int option -> unit
-  method goal: int option
-
   (** end of script, true if the whole script has been executed *)
   method eos: bool
   method bos: bool
@@ -108,7 +101,9 @@ object
 end
 
 val script: 
-  urichooser: (GSourceView2.source_view -> NReference.reference list -> NReference.reference list) -> 
+  urichooser:
+    (GSourceView2.source_view -> NReference.reference list ->
+      NReference.reference list) -> 
   ask_confirmation: 
     (title:string -> message:string -> [`YES | `NO | `CANCEL]) -> 
   parent:GBin.scrolled_window ->
@@ -116,6 +111,8 @@ val script:
   unit -> 
     script
 
+val destroy: int -> unit
 val current: unit -> script
 val at_page: int -> script
+
 val iter_scripts: (script -> unit) -> unit