summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/Kinds.java
blob: b99c8fa8d05856423c5e7481d61bedc66e1888c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
** $Id$
\*                                                                      */

package scalac.symtab;


public interface Kinds {

    /** kind of non-existent symbol
     */
    int NONE = 1;

    /** definition kinds
     */
    int ALIAS = 2;
    int CLASS = 3;
    int TYPE = 4;
    int VAL = 5;
}