src/Pure/PIDE/markup.scala
changeset 56616 abc2da18d08d
parent 56548 ae6870efc28d
child 56623 4675df68450e
equal deleted inserted replaced
56615:47c1dbeec36a 56616:abc2da18d08d
   418         case (FUNCTION, "task_statistics") :: stats => Some(stats)
   418         case (FUNCTION, "task_statistics") :: stats => Some(stats)
   419         case _ => None
   419         case _ => None
   420       }
   420       }
   421   }
   421   }
   422 
   422 
       
   423   object Loading_Theory
       
   424   {
       
   425     def unapply(props: Properties.T): Option[String] =
       
   426       props match {
       
   427         case List((FUNCTION, "loading_theory"), (NAME, name)) => Some(name)
       
   428         case _ => None
       
   429       }
       
   430   }
       
   431 
       
   432   object Use_Theories_Result
       
   433   {
       
   434     def unapply(props: Properties.T): Option[(String, Boolean)] =
       
   435       props match {
       
   436         case List((FUNCTION, "use_theories_result"),
       
   437           ("id", id), ("ok", Properties.Value.Boolean(ok))) => Some((id, ok))
       
   438         case _ => None
       
   439       }
       
   440   }
       
   441 
   423 
   442 
   424   /* simplifier trace */
   443   /* simplifier trace */
   425 
   444 
   426   val SIMP_TRACE = "simp_trace"
   445   val SIMP_TRACE = "simp_trace"
   427 
   446