зеркало из https://github.com/mozilla/gecko-dev.git
JDK 1.1 compatibility. Should flesh out the CommandLine class to do what sun.tools.util.CommandLine does.
This commit is contained in:
Родитель
06ecbd3c25
Коммит
364b0b1752
|
@ -21,9 +21,18 @@
|
|||
*/
|
||||
|
||||
import com.compilercompany.ecmascript.*;
|
||||
import sun.tools.util.CommandLine;
|
||||
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.
|
||||
*/
|
||||
|
|
|
@ -21,9 +21,18 @@
|
|||
*/
|
||||
|
||||
import com.compilercompany.ecmascript.*;
|
||||
import sun.tools.util.CommandLine;
|
||||
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.
|
||||
*/
|
||||
|
|
Загрузка…
Ссылка в новой задаче