summaryrefslogtreecommitdiff
path: root/sources/scalac/transformer/matching/PatternTool.java
blob: 7cd144de7cdff66ceb5b686c1b4de3ef6377ce1e (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
**                                                                      **
** $Id$
\*                                                                      */

package scalac.transformer.matching;


import scalac.*;
import scalac.ast.*;
import scalac.util.*;
import scalac.symtab.*;
import scalac.typechecker.*;
import PatternNode.*;
import Tree.*;

/** this class takes care of tedious stuff which has nothing to do with
 *  matching
 */
abstract class PatternTool {

    public static final Name RESULT_N = Name.fromString("$result");
    public static final Name SCALA_N = Name.fromString("scala");
    public static final Name BOOLEAN_N = Name.fromString("Boolean");
    public static final Name AND_N = Name.fromString("$amp$amp");
    public static final Name OR_N = Name.fromString("$bar$bar");
    public static final Name NOT_N = Name.fromString("$bang");
    public static final Name EQUALS_N = Name.fromString("$eq$eq");
    public static final Name SCALA_MATCHERROR_N = Name.fromString("scala.MatchError");
    public static final Name MATCHERROR_N = Name.fromString("MatchError");
    public static final Name FAIL_N = Name.fromString("fail");
    public static final Name LENGTH_N = Name.fromString("length");
    public static final Name APPLY_N = Name.fromString("apply");

    /** the current compilation unit
     */
    Unit unit;

    /** the global fresh name creator
     */
    FreshNameCreator fresh;

    /** the global tree factory
     */
    TreeFactory make;

    /** the global definitions component
     */
    Definitions defs;

    /** the global tree generation component
     */
    TreeGen gen;

    /** type inference engine
     */
    Infer infer;

    /** the statics of class Boolean
     */
    Symbol statics; // REMOVE

    /** the eqeq symbol
     */
    Symbol eqSymInt; // REMOVE
    Symbol eqSymBool; // REMOVE

    /** the eqeq symbol
     */
    Symbol notSym;

    // constructor
    public PatternTool( Unit unit, Infer infer ) {
	this.unit = unit;
	this.infer = infer;
	this.fresh = unit.global.freshNameCreator;
	this.make = unit.global.make;
	this.gen = unit.global.treeGen;
	this.defs = unit.global.definitions;

	this.notSym = defs.BOOLEAN_CLASS.lookup/*Term*/( NOT_N );
	assert !(notSym instanceof NoSymbol) : " Boolean.! not found ";

    } // PatternTool( Unit unit, .... )

} // class PatternTool