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

// $Id$

package meta.scalac.ast;

import meta.java.Type;

/** This class describes a tree node field. */
public class TreeField {

    //########################################################################
    // Public Fields

    public final Type type;
    public final String name;

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

    public TreeField(Type type, String name) {
        this.type = type;
        this.name = name;
    }

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

    public String toString() {
        return name;
    }

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