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

// $Id$

//package scala.compiler.backend;
package scalac.transformer;

import java.util.HashMap;
import scalac.*;
import scalac.checkers.*;


public class AddConstructorsPhase extends PhaseDescriptor {

    /** Maps the old constructor symbols to the new ones
     */
    HashMap constructors = new HashMap();

    public String name() {
        return "addconstructors";
    }

    public String description() {
        return "add explicit constructor for each class";
    }

    public String taskDescription() {
        return "added constructors";
    }

    public void apply(Global global) {
        new AddConstructors(global, constructors).apply();
    }

    public void apply(Unit unit) {
        new AddConstructors(unit.global, constructors).apply(unit);
    }

    public Checker[] postCheckers(Global global) {
        return new Checker[] {
            new CheckSymbols(global),
            new CheckTypes(global),
            new CheckOwners(global),
            new CheckNames(global)
        };
    }
}