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

编译器/解释器

开发平台:

Others

  1. options {
  2. language="Cpp";
  3. }
  4. {
  5. #include <iostream>
  6. }
  7. class DemoJavaDocParser extends Parser;
  8. options {
  9. importVocab=JavaDoc;
  10. }
  11. content
  12. : ( p:PARAM // includes ID as part of PARAM
  13. {std::cout << "found: " << p->getText() << std::endl;}
  14. | e:EXCEPTION
  15. {std::cout << "found: " << e->getText() << std::endl;}
  16. )*
  17. ;