зеркало из https://github.com/mozilla/gecko-dev.git
TestMain class
This commit is contained in:
Родитель
a37bdc108b
Коммит
5f94cc1771
|
@ -1,3 +1,18 @@
|
|||
{
|
||||
import java.io.*;
|
||||
// Test program
|
||||
class TestMain {
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
JSLexer lexer = new JSLexer(new DataInputStream(System.in));
|
||||
JSParser parser = new JSParser(lexer);
|
||||
parser.expression(true, true);
|
||||
} catch(Exception e) {
|
||||
System.err.println("exception: "+e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class JSParser extends Parser;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче