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

编译器/解释器

开发平台:

Others

  1. options {
  2. language="Cpp";
  3. }
  4. {
  5. #include <iostream>
  6. }
  7. class T extends Lexer;
  8. options {
  9. k=2;
  10. filter=IGNORE;
  11. charVocabulary = '3'..'177';
  12. }
  13. P : "<p>" ;
  14. BR: "<br>" ;
  15. protected
  16. IGNORE
  17. : '<' (~'>')* '>' {std::cout << "invalid tag: " << $getText << std::endl;}
  18. | ( "rn" | 'r' | 'n' ) {newline();}
  19. | .
  20. ;