This commit is contained in:
rogerl%netscape.com 1999-04-27 06:18:56 +00:00
Родитель 62853a4536
Коммит 3c8ad4ca5b
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -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;