summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/TypeTags.java
blob: 0a0d25cfb635ff2185de5104aa63a8d43142522f (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
25
26
27
28
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
** $Id$
\*                                                                      */

package scalac.symtab;

public interface TypeTags {

    /** unboxed type tags
     */
    int BYTE = 10;
    int CHAR = 11;
    int SHORT = 12;
    int INT = 13;
    int LONG = 14;
    int FLOAT = 15;
    int DOUBLE = 16;
    int BOOLEAN = 17;
    int UNIT = 18;
    int STRING = 19;

    int FirstUnboxedTag = BYTE;
    int LastUnboxedTag = UNIT;
}