src/Pure/PIDE/markup.scala
changeset 66872 69afe45a6062
parent 66379 6392766f3c25
child 66873 9953ae603a23
equal deleted inserted replaced
66871:a804fa68f62c 66872:69afe45a6062
   538 
   538 
   539   object ML_Statistics
   539   object ML_Statistics
   540   {
   540   {
   541     def unapply(props: Properties.T): Option[Properties.T] =
   541     def unapply(props: Properties.T): Option[Properties.T] =
   542       props match {
   542       props match {
   543         case (FUNCTION, "ML_statistics") :: stats => Some(stats)
   543         case (FUNCTION, "ML_statistics") :: props => Some(props)
   544         case _ => None
   544         case _ => None
   545       }
   545       }
   546   }
   546   }
   547 
   547 
   548   object Task_Statistics
   548   object Task_Statistics
   549   {
   549   {
   550     def unapply(props: Properties.T): Option[Properties.T] =
   550     def unapply(props: Properties.T): Option[Properties.T] =
   551       props match {
   551       props match {
   552         case (FUNCTION, "task_statistics") :: stats => Some(stats)
   552         case (FUNCTION, "task_statistics") :: props => Some(props)
   553         case _ => None
   553         case _ => None
   554       }
   554       }
   555   }
   555   }
   556 
   556 
   557   val LOADING_THEORY = "loading_theory"
   557   val LOADING_THEORY = "loading_theory"