Revised readme and removed CommandLine parser (for now).

This commit is contained in:
jeff.dyer%compilercompany.com 2000-12-16 00:50:25 +00:00
parent 5f1a1465ce
commit 80b7ec4f9f
4 changed files with 18 additions and 46 deletions

View File

@ -1,5 +1,6 @@
J S C R E A D M E F I L E
Jeff Dyer, Dec-1-2000
Jeff Dyer, Mountain View Compiler Company
Dec-15-2000
OVERVIEW
@ -19,11 +20,11 @@ installed on your system. If it is correctly installed, you can type
followed by a bunch of other documentation text.
NOTE: I've only tried to build on NT40 using Java 1.3.0_01. You may
get different results in different environments.
NOTE: I've only tried to build on NT40 using Java2 1.3.0_01. You may
get different results in different environments.
Go to the directory ./build/java, and run your favorite make
utility. Such as with the command:
utility, such as:
make
@ -76,6 +77,10 @@ ISSUES
CHANGES
Dec-15-2000
-----------
Removed dependency on sun.tools packages.
Dec-1-2000
----------
* Original checkin to mozilla.org.

View File

@ -23,16 +23,6 @@
import com.compilercompany.ecmascript.*;
import java.io.*;
/**
* Dummy command line parsing class.
* Probably shouldn't use sun.tools.util.CommandLine.
*/
class CommandLine {
static String[] parse(String[] args) throws IOException {
return args;
}
}
/*
* The main driver.
*/
@ -46,15 +36,6 @@ public class Main {
*/
public static void main(String[] args) {
/* Preprocess @file arguments */
try {
args = CommandLine.parse(args);
} catch (FileNotFoundException e) {
System.out.println("Can't read "+ e.getMessage());
} catch (IOException e) {
System.out.println("I/O error " + e.getMessage());
}
new Main(args).run();
System.exit(0);
}

View File

@ -1,5 +1,6 @@
J S C R E A D M E F I L E
Jeff Dyer, Dec-1-2000
Jeff Dyer, Mountain View Compiler Company
Dec-15-2000
OVERVIEW
@ -19,11 +20,11 @@ installed on your system. If it is correctly installed, you can type
followed by a bunch of other documentation text.
NOTE: I've only tried to build on NT40 using Java 1.3.0_01. You may
get different results in different environments.
NOTE: I've only tried to build on NT40 using Java2 1.3.0_01. You may
get different results in different environments.
Go to the directory ./build/java, and run your favorite make
utility. Such as with the command:
utility, such as:
make
@ -76,6 +77,10 @@ ISSUES
CHANGES
Dec-15-2000
-----------
Removed dependency on sun.tools packages.
Dec-1-2000
----------
* Original checkin to mozilla.org.

View File

@ -23,16 +23,6 @@
import com.compilercompany.ecmascript.*;
import java.io.*;
/**
* Dummy command line parsing class.
* Probably shouldn't use sun.tools.util.CommandLine.
*/
class CommandLine {
static String[] parse(String[] args) throws IOException {
return args;
}
}
/*
* The main driver.
*/
@ -46,15 +36,6 @@ public class Main {
*/
public static void main(String[] args) {
/* Preprocess @file arguments */
try {
args = CommandLine.parse(args);
} catch (FileNotFoundException e) {
System.out.println("Can't read "+ e.getMessage());
} catch (IOException e) {
System.out.println("I/O error " + e.getMessage());
}
new Main(args).run();
System.exit(0);
}