src/Pure/ROOT.scala
author wenzelm
Thu, 10 Mar 2016 09:56:29 +0100
changeset 62585 5d4ed917450d
parent 62492 0e53fade87fe
child 62845 31177a9c3025
permissions -rw-r--r--
clarified files;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57647
5c600dd17617 clarified file names;
wenzelm
parents: 45673
diff changeset
     1
/*  Title:      Pure/ROOT.scala
45673
cd41e3903fbf separate compilation of PIDE vs. Pure sources, which enables independent Scala library;
wenzelm
parents: 45667
diff changeset
     2
    Module:     PIDE
42720
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
     4
57647
5c600dd17617 clarified file names;
wenzelm
parents: 45673
diff changeset
     5
Root of isabelle package.
42720
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
     6
*/
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
     7
62492
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
     8
package object isabelle
42720
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
     9
{
57649
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    10
  object Distribution     /*filled-in by makedist*/
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    11
  {
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    12
    val version = "unidentified repository version"
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    13
    val is_identified = false
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    14
    val is_official = false
a43898f76ae9 further distinction of Isabelle distribution: alert for identified release candidates;
wenzelm
parents: 57647
diff changeset
    15
  }
62492
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    16
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    17
  val ERROR = Exn.ERROR
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    18
  val error = Exn.error _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    19
  val cat_error = Exn.cat_error _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    20
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    21
  val space_explode = Library.space_explode _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    22
  val split_lines = Library.split_lines _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    23
  val cat_lines = Library.cat_lines _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    24
  val quote = Library.quote _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    25
  val commas = Library.commas _
0e53fade87fe clarified modules;
wenzelm
parents: 57649
diff changeset
    26
  val commas_quote = Library.commas_quote _
42720
caa4f1279154 added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff changeset
    27
}