| author | wenzelm |
| Sun, 23 Oct 2016 12:34:39 +0200 | |
| changeset 64356 | ebbe7cf0c2b8 |
| parent 64173 | 85ff21510ba9 |
| child 64370 | 865b39487b5d |
| 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 |
||
| 63789 | 14 |
def using[A <: { def close() }, B](x: A)(f: A => B): B = Library.using(x)(f)
|
| 62492 | 15 |
val space_explode = Library.space_explode _ |
16 |
val split_lines = Library.split_lines _ |
|
17 |
val cat_lines = Library.cat_lines _ |
|
| 64173 | 18 |
val terminate_lines = Library.terminate_lines _ |
| 62492 | 19 |
val quote = Library.quote _ |
20 |
val commas = Library.commas _ |
|
21 |
val commas_quote = Library.commas_quote _ |
|
|
42720
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
22 |
} |