1 package antlr; 2 3 9 10 13 class RuleEndElement extends BlockEndElement { 14 protected Lookahead[] cache; protected boolean noFOLLOW; 18 19 20 public RuleEndElement(Grammar g) { 21 super(g); 22 cache = new Lookahead[g.maxk + 1]; 23 } 24 25 public Lookahead look(int k) { 26 return grammar.theLLkAnalyzer.look(k, this); 27 } 28 29 public String toString() { 30 return ""; 32 } 33 } 34 | Popular Tags |