runtest.bat
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. rem
  2. rem Demonstrate how to subclass a grammar and actually get it to compile.
  3. rem Biggest issue is making sure ANTLR, compiler, and interpreter can see
  4. rem the supergrammar and classes needed by it.  In this case, the subgrammar
  5. rem uses the supergrammar's lexer; it must be visible for the compiler and
  6. rem interpreter.
  7. rem
  8. rem If you put a lexer here in this dir, you would not need all this
  9. rem classpath crap.
  10. rem
  11. java antlr.Tool -glib "..tinyctinyc.g" subc.g
  12. javac -classpath c:jdk1.1.7Alibclasses.zip;.;..tinyc;d:Projectsantlr-2.5.0 *.java
  13. rem
  14. rem have to change the next classpath to point to your 2.5.0 directory not mine.
  15. rem
  16. java -classpath c:jdk1.1.7Alibclasses.zip;.;..tinyc;d:Projectsantlr-2.5.0 Main < input.c