author | wenzelm |
Mon, 17 Oct 2022 12:15:23 +0200 | |
changeset 76322 | 43e66527fa93 |
parent 76176 | d6bd84eb94a3 |
child 76537 | cdbe20024038 |
permissions | -rw-r--r-- |
57647 | 1 |
/* Title: Pure/ROOT.scala |
42720
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
3 |
|
57647 | 4 |
Root of isabelle package. |
42720
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
6 |
|
75393 | 7 |
package object isabelle { |
62492 | 8 |
val ERROR = Exn.ERROR |
9 |
val error = Exn.error _ |
|
68131 | 10 |
def cat_error(msgs: String*): Nothing = Exn.cat_error(msgs:_*) |
62492 | 11 |
|
69393
ed0824ef337e
static type for Library.using: avoid Java 11 warnings on "Illegal reflective access";
wenzelm
parents:
68144
diff
changeset
|
12 |
def using[A <: AutoCloseable, B](a: A)(f: A => B): B = Library.using(a)(f) |
62492 | 13 |
val space_explode = Library.space_explode _ |
14 |
val split_lines = Library.split_lines _ |
|
15 |
val cat_lines = Library.cat_lines _ |
|
64173 | 16 |
val terminate_lines = Library.terminate_lines _ |
62492 | 17 |
val quote = Library.quote _ |
18 |
val commas = Library.commas _ |
|
19 |
val commas_quote = Library.commas_quote _ |
|
75295
38398766be6b
command-line arguments for "isabelle vscode", similar to "isabelle jedit";
wenzelm
parents:
74356
diff
changeset
|
20 |
val proper_bool = Library.proper_bool _ |
65712 | 21 |
val proper_string = Library.proper_string _ |
65761 | 22 |
def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list) |
42720
caa4f1279154
added toplevel isabelle package -- reduce warnings with scala-2.9.0.final;
wenzelm
parents:
diff
changeset
|
23 |
} |
76176 | 24 |