author | wenzelm |
Mon, 11 Jul 2016 16:36:29 +0200 | |
changeset 63441 | 4c3fa4dba79f |
parent 62845 | 31177a9c3025 |
child 63789 | af28929ff219 |
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 |
{ |
62492 | 10 |
val ERROR = Exn.ERROR |
11 |
val error = Exn.error _ |
|
12 |
val cat_error = Exn.cat_error _ |
|
13 |
||
14 |
val space_explode = Library.space_explode _ |
|
15 |
val split_lines = Library.split_lines _ |
|
16 |
val cat_lines = Library.cat_lines _ |
|
17 |
val quote = Library.quote _ |
|
18 |
val commas = Library.commas _ |
|
19 |
val commas_quote = Library.commas_quote _ |
|
42720
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
20 |
} |