summaryrefslogtreecommitdiff
path: root/sources/meta/scalac/ast/TreeSymbol.java
blob: 1e53be40134ca694efd55c4f24527b8f56f7d487 (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 meta.scalac.ast;

/** This class describes the symbol stored in some tree nodes. */
public class TreeSymbol {

    //########################################################################
    // Public Cases

    /** Indicates the absence of symbol. */
    public case NoSym;

    /** Indicates the presence of a symbol. */
    public case HasSym(TreeField field, boolean isDef);

    //########################################################################
}