| author | traytel | 
| Thu, 06 Oct 2016 13:34:00 +0200 | |
| changeset 64068 | 3a506cb576d3 | 
| parent 63789 | af28929ff219 | 
| child 64173 | 85ff21510ba9 | 
| permissions | -rw-r--r-- | 
/* Title: Pure/ROOT.scala Module: PIDE Author: Makarius Root of isabelle package. */ package object isabelle { val ERROR = Exn.ERROR val error = Exn.error _ val cat_error = Exn.cat_error _ def using[A <: { def close() }, B](x: A)(f: A => B): B = Library.using(x)(f) val space_explode = Library.space_explode _ val split_lines = Library.split_lines _ val cat_lines = Library.cat_lines _ val quote = Library.quote _ val commas = Library.commas _ val commas_quote = Library.commas_quote _ }