summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/Kinds.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/symtab/Kinds.java')
-rw-r--r--sources/scalac/symtab/Kinds.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/sources/scalac/symtab/Kinds.java b/sources/scalac/symtab/Kinds.java
new file mode 100644
index 0000000000..8902ff4699
--- /dev/null
+++ b/sources/scalac/symtab/Kinds.java
@@ -0,0 +1,28 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+** **
+** $Id$
+\* */
+
+package scalac.symtab;
+
+
+public interface Kinds {
+
+ /** kind of error symbol
+ */
+ int ERROR = 0;
+
+ /** kind of non-existent symbol
+ */
+ int NONE = 1;
+
+ /** definition kinds
+ */
+ int ALIAS = 2;
+ int CLASS = 3;
+ int TYPE = 4;
+ int VAL = 5;
+}