src/Pure/Thy/thy_header.scala
author wenzelm
Thu, 16 Jul 2009 16:24:49 +0200
changeset 32015 7101feb5247e
parent 29140 e7ac5bb20aed
child 32450 375db037f4d2
permissions -rw-r--r--
Support for copy-avoiding functions on pure values, at the cost of readability.

/*  Title:      Pure/Thy/thy_header.scala
    Author:     Makarius

Theory header keywords.
*/

package isabelle

object ThyHeader {

  val HEADER = "header"
  val THEORY = "theory"
  val IMPORTS = "imports"
  val USES = "uses"
  val BEGIN = "begin"

  val keywords = List("%", "(", ")", ";", BEGIN, HEADER, IMPORTS, THEORY, USES)
}