summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/Traverser.java.tmpl
blob: a17768e2b4ba60429102be191fadc10dbac7a2a6 (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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.ast;

import scalac.CompilationUnit;
{#Imports#}

/** Class to traverse a tree without modifying it. */
public class Traverser {

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

    public void traverse(CompilationUnit[] units) {
        for (int i = 0; i < units.length; i++) traverse(units[i]);
    }

    public void traverse(CompilationUnit unit) {
        traverse(unit.body);
    }

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

    {#TraverseArrays#}

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