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