summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/parser/TokenData.java
blob: d6bcac6c1ccde716f1180264af440056a9293109 (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
43
44
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
** $Id$
\*                                                                      */

package scalac.ast.parser;

import scalac.util.Name;

/** A class for representing a token's data.
 *
 *  @author     Matthias Zenger
 *  @version    1.0
 */
public class TokenData implements Tokens {

    /** the next token
     */
    public int token = EMPTY;

    /** the token's position. pos = line << Position.LINESHIFT + col
     */
    public int pos = 0;

    /** the name of an identifier or token
     */
    public Name name;

    /** the value of a number
     */
    public long intVal;
    public double floatVal;

    public void copyFrom(TokenData td) {
        this.token = td.token;
        this.pos = td.pos;
        this.name = td.name;
        this.intVal = td.intVal;
        this.floatVal = td.floatVal;
    }
}