src/Pure/Thy/thy_header.scala
author boehmes
Mon, 21 Sep 2009 13:42:36 +0200
changeset 32626 a45e8ec2b51e
parent 32466 a393b7e2a2f8
child 34169 7501b2910900
permissions -rw-r--r--
deleted unused file

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

Theory header keywords.
*/

package isabelle


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

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