src/Pure/ROOT.scala
author wenzelm
Sun, 10 Jul 2016 11:18:35 +0200
changeset 63429 baedd4724f08
parent 62845 31177a9c3025
child 63789 af28929ff219
permissions -rw-r--r--
tuned signature: more uniform Keyword.spec;

/*  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 _

  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 _
}