summaryrefslogblamecommitdiff
path: root/sources/scalac/checkers/CheckTreeNodes.java.tmpl
blob: ca07b23cbd3e966a38d484ec5f7bec766776096f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                          
                             





                                                                              




                                                                              


                                                  
                                                       







                                                                              




                                         

                                                                              
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.checkers;

import scalac.Global;
import scalac.CompilerPhases;
{#Imports#}

/** Class to check tree nodes. */
public class CheckTreeNodes {

    //########################################################################
    // Public Constants

    public static final CheckTreeNodes instance = new CheckTreeNodes();

    //########################################################################
    // Private Fields

    private final Global global = Global.instance;
    private final CompilerPhases phases = global.PHASE;

    //########################################################################
    // Public Methods

    public void check(Tree tree) {
        {#TreeSwitch#}
    }

    public boolean checkNode(Tree tree) {
        check(tree);
        return true;
    }

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