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

// $Id$

package scalac.transformer;

import scalac.Global;
import scalac.Phase;
import scalac.PhaseDescriptor;
import scalac.CompilationUnit;
import scalac.symtab.Definitions;

import ch.epfl.lamp.util.CodePrinter;
import scalac.atree.ATreePrinter;


/**
 * This class represents the ICode phase for the java version
 * of the compiler. It doesn't do anything but permit to make
 * a bridge between the java implementation of Socos et the
 * scala one. See scala.tools.scalac.icode.ICodePhase for
 * implementation
 */
public class ICodePhase extends Phase {

    //########################################################################
    // Private Fields

    private final Definitions definitions;

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

    /** Initializes this instance. */
    public ICodePhase(Global global, PhaseDescriptor descriptor) {
        super(global, descriptor);
        this.definitions = global.definitions;
    }

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

    /** Applies this phase to the given compilation units. */
    public void apply(CompilationUnit[] units) {
       	// This java version doesn't make anything
    }

    public ATreePrinter getPrinter(CodePrinter cp) {
	return new ATreePrinter(cp);
	// !! Useless
    }

}