src/Pure/PIDE/xml.scala
changeset 75436 40630fec3b5d
parent 75393 87ebf5a50283
child 76351 2cee31cd92f0
equal deleted inserted replaced
75435:c8087e6bd2ce 75436:40630fec3b5d
   331     }
   331     }
   332   }
   332   }
   333 
   333 
   334   object Decode {
   334   object Decode {
   335     type T[A] = XML.Body => A
   335     type T[A] = XML.Body => A
   336     type V[A] = (List[String], XML.Body) => A
   336     type V[A] = PartialFunction[(List[String], XML.Body), A]
   337     type P[A] = PartialFunction[List[String], A]
   337     type P[A] = PartialFunction[List[String], A]
   338 
   338 
   339 
   339 
   340     /* atomic values */
   340     /* atomic values */
   341 
   341