зеркало из https://github.com/mozilla/pjs.git
TestMain class
This commit is contained in:
Родитель
62853a4536
Коммит
3c8ad4ca5b
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче