summaryrefslogtreecommitdiff
path: root/sources/scalac/checkers/CheckTreeNodes.java.tmpl
blob: ca07b23cbd3e966a38d484ec5f7bec766776096f (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    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;
    }

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