src/Pure/PIDE/markup.scala
changeset 60834 781f1168d31e
parent 60831 5b99a334fd4c
child 60842 5510c8444bc4
equal deleted inserted replaced
60833:d201996f72a8 60834:781f1168d31e
   496   /* debugger output */
   496   /* debugger output */
   497 
   497 
   498   val DEBUGGER_OUTPUT = "debugger_output"
   498   val DEBUGGER_OUTPUT = "debugger_output"
   499   object Debugger_Output
   499   object Debugger_Output
   500   {
   500   {
   501     def unapply(props: Properties.T): Option[(String, Long)] =
   501     def unapply(props: Properties.T): Option[String] =
   502       props match {
   502       props match {
   503         case List((FUNCTION, DEBUGGER_OUTPUT), (NAME, name), (SERIAL, Properties.Value.Long(i))) =>
   503         case List((FUNCTION, DEBUGGER_OUTPUT), (NAME, name)) => Some(name)
   504           Some((name, i))
       
   505         case _ => None
   504         case _ => None
   506       }
   505       }
   507   }
   506   }
   508 
   507 
   509 
   508