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