src/Pure/PIDE/markup.ML
changeset 59369 7090199d3f78
parent 59364 3b5da177ae6b
child 59795 d453c69596cc
equal deleted inserted replaced
59368:100db5cf5be5 59369:7090199d3f78
   184   val ML_statistics: Properties.entry
   184   val ML_statistics: Properties.entry
   185   val task_statistics: Properties.entry
   185   val task_statistics: Properties.entry
   186   val command_timing: Properties.entry
   186   val command_timing: Properties.entry
   187   val loading_theory: string -> Properties.T
   187   val loading_theory: string -> Properties.T
   188   val dest_loading_theory: Properties.T -> string option
   188   val dest_loading_theory: Properties.T -> string option
   189   val build_theories_result: string -> bool -> Properties.T
   189   val build_theories_result: string -> Properties.T
   190   val print_operationsN: string
   190   val print_operationsN: string
   191   val print_operations: Properties.T
   191   val print_operations: Properties.T
   192   val simp_trace_panelN: string
   192   val simp_trace_panelN: string
   193   val simp_trace_logN: string
   193   val simp_trace_logN: string
   194   val simp_trace_stepN: string
   194   val simp_trace_stepN: string
   595 fun loading_theory name = [("function", "loading_theory"), ("name", name)];
   595 fun loading_theory name = [("function", "loading_theory"), ("name", name)];
   596 
   596 
   597 fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
   597 fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
   598   | dest_loading_theory _ = NONE;
   598   | dest_loading_theory _ = NONE;
   599 
   599 
   600 fun build_theories_result id ok =
   600 fun build_theories_result id = [("function", "build_theories_result"), ("id", id)];
   601   [("function", "build_theories_result"), ("id", id), ("ok", print_bool ok)];
       
   602 
   601 
   603 val print_operationsN = "print_operations";
   602 val print_operationsN = "print_operations";
   604 val print_operations = [(functionN, print_operationsN)];
   603 val print_operations = [(functionN, print_operationsN)];
   605 
   604 
   606 
   605