test2.g
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. /* This is test2.g which is a copy of test.g and tests linking
  2.  * multiple scanners/parsers together; DLG-based scanner
  3.  */
  4. <<
  5. typedef ANTLRCommonToken ANTLRToken;
  6. >>
  7. #token "[ tn]+" <<skip();>>
  8. #token Eof "@"
  9. class B {
  10. e : IDENTIFIER NUMBER
  11. <<fprintf(stderr, "text is %s,%sn", $1->getText(), $2->getText());>>
  12. Eof
  13. ;
  14. }
  15. #token IDENTIFIER "[a-z]+"
  16. #token NUMBER "[0-9]+"