summaryrefslogblamecommitdiff
path: root/sources/meta/scalac/ast/TreeSymbol.java
blob: 80402398002966ba3834e1fad02d53c8f7ff35f4 (plain) (tree)


























                                                                              
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    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;

    /** Indicates the presence of a symbol that is define here. */
    public case DefSym;

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