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

编译器/解释器

开发平台:

Others

  1. package antlr;
  2. /* ANTLR Translator Generator
  3.  * Project led by Terence Parr at http://www.jGuru.com
  4.  * Software rights: http://www.antlr.org/RIGHTS.html
  5.  *
  6.  * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/BlockEndElement.java#1 $
  7.  */
  8. /**All alternative blocks are "terminated" by BlockEndElements unless
  9.  * they are rule blocks (in which case they use RuleEndElement).
  10.  */
  11. class BlockEndElement extends AlternativeElement {
  12. protected boolean[] lock; // for analysis; used to avoid infinite loops
  13. protected AlternativeBlock block;// ending blocks know what block they terminate
  14. public BlockEndElement(Grammar g) {
  15. super(g);
  16. lock = new boolean[g.maxk+1];
  17. }
  18. public Lookahead look(int k) {
  19. return grammar.theLLkAnalyzer.look(k, this);
  20. }
  21. public String toString() {
  22. //return " [BlkEnd]";
  23. return "";
  24. }
  25. }