summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/StrictTreeCopier.java.tmpl
blob: f82653279adee035bf825085474a40543209e1a6 (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;

{#Imports#}

/** A tree copier that returns always a new tree */
public class StrictTreeCopier implements TreeCopier {

    //########################################################################
    // Protected Fields

    /** The tree factory used to create the tree copies */
    protected final TreeFactory make;

    //########################################################################
    // Public Constructors

    public StrictTreeCopier(TreeFactory make) {
        this.make = make;
    }

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

    {#TreeMethods#}

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