| author | haftmann |
| Wed, 06 May 2009 16:01:06 +0200 | |
| changeset 31048 | ac146fc38b51 |
| parent 29140 | e7ac5bb20aed |
| child 32450 | 375db037f4d2 |
| permissions | -rw-r--r-- |
| 28495 | 1 |
/* Title: Pure/Thy/thy_header.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Theory header keywords. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
object ThyHeader {
|
|
10 |
||
11 |
val HEADER = "header" |
|
12 |
val THEORY = "theory" |
|
13 |
val IMPORTS = "imports" |
|
14 |
val USES = "uses" |
|
15 |
val BEGIN = "begin" |
|
16 |
||
17 |
val keywords = List("%", "(", ")", ";", BEGIN, HEADER, IMPORTS, THEORY, USES)
|
|
18 |
} |