| changeset 50975 | 73ec6ad6700e |
| parent 50781 | a0f22c2d60cc |
| child 51570 | 3633828d80fc |
--- a/src/Pure/PIDE/markup.scala Fri Jan 18 16:20:09 2013 +0100 +++ b/src/Pure/PIDE/markup.scala Fri Jan 18 17:51:50 2013 +0100 @@ -330,6 +330,15 @@ case _ => None } } + + object Task_Statistics + { + def unapply(props: Properties.T): Option[Properties.T] = + props match { + case (FUNCTION, "task_statistics") :: stats => Some(stats) + case _ => None + } + } }