summaryrefslogtreecommitdiff
path: root/sources/scala/tools/scalai/Main.java
blob: 7be81142359848e60e75a616dd13335a210642cf (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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $OldId: Main.java,v 1.2 2002/08/30 15:44:55 paltherr Exp $
// $Id$

package scala.tools.scalai;

import scala.tools.scalac.CompilerPhases$class;
import scala.tools.util.ConsoleReporter;

public class Main {

    //########################################################################
    // Public Constants

    public static final String PRODUCT =
        System.getProperty("scala.product", "scala");
    public static final String VERSION =
        System.getProperty("scala.version", "1.0");

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

    public static void main(String[] args) {
        ConsoleReporter reporter = new ConsoleReporter();
        InterpreterCommand command = new InterpreterCommand(
            PRODUCT, VERSION, reporter, new CompilerPhases$class());
        if (command.parse(args)) {
            InterpreterShell shell = new InterpreterShell(command);
            shell.main(command.files.toArray(), command.script.value,
                command.program.main, command.program.args);
            reporter.printSummary();
        }
        System.exit((reporter.errors() > 0) ? 1 : 0);
    }

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