| author | wenzelm |
| Tue, 08 Mar 2016 11:18:21 +0100 | |
| changeset 62555 | fd6e64133684 |
| parent 62492 | 0e53fade87fe |
| child 62845 | 31177a9c3025 |
| permissions | -rw-r--r-- |
| 57647 | 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 | 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 | 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 | 16 |
|
17 |
val ERROR = Exn.ERROR |
|
18 |
val error = Exn.error _ |
|
19 |
val cat_error = Exn.cat_error _ |
|
20 |
||
21 |
val space_explode = Library.space_explode _ |
|
22 |
val split_lines = Library.split_lines _ |
|
23 |
val cat_lines = Library.cat_lines _ |
|
24 |
val quote = Library.quote _ |
|
25 |
val commas = Library.commas _ |
|
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 |
} |