src/Pure/PIDE/markup.ML
changeset 72002 5c4800f6b25a
parent 71912 b9fbc93f3a24
child 72103 7b318273a4aa
equal deleted inserted replaced
72001:3e08311ada8e 72002:5c4800f6b25a
   221   val cancel_scala: string -> Properties.T
   221   val cancel_scala: string -> Properties.T
   222   val ML_statistics: Properties.entry
   222   val ML_statistics: Properties.entry
   223   val task_statistics: Properties.entry
   223   val task_statistics: Properties.entry
   224   val command_timing: Properties.entry
   224   val command_timing: Properties.entry
   225   val theory_timing: Properties.entry
   225   val theory_timing: Properties.entry
       
   226   val session_timing: Properties.entry
   226   val loading_theory: string -> Properties.T
   227   val loading_theory: string -> Properties.T
   227   val dest_loading_theory: Properties.T -> string option
   228   val dest_loading_theory: Properties.T -> string option
   228   val build_session_finished: Properties.T
   229   val build_session_finished: Properties.T
   229   val print_operationsN: string
   230   val print_operationsN: string
   230   val print_operations: Properties.T
   231   val print_operations: Properties.T
   703 
   704 
   704 val command_timing = (functionN, "command_timing");
   705 val command_timing = (functionN, "command_timing");
   705 
   706 
   706 val theory_timing = (functionN, "theory_timing");
   707 val theory_timing = (functionN, "theory_timing");
   707 
   708 
       
   709 val session_timing = (functionN, "session_timing");
       
   710 
   708 fun loading_theory name = [("function", "loading_theory"), ("name", name)];
   711 fun loading_theory name = [("function", "loading_theory"), ("name", name)];
   709 
   712 
   710 fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
   713 fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
   711   | dest_loading_theory _ = NONE;
   714   | dest_loading_theory _ = NONE;
   712 
   715