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

编译器/解释器

开发平台:

Others

  1. class T extends Lexer;
  2. options {
  3. k=2;
  4. filter=IGNORE;
  5. charVocabulary = '3'..'177';
  6. }
  7. P : "<p>" ;
  8. BR: "<br>" ;
  9. protected
  10. IGNORE
  11. : '<' (~'>')* '>' {System.out.println("invalid tag: "+$getText);}
  12. | ( "rn" | 'r' | 'n' ) {newline();}
  13. | .
  14. ;