1 package persistence.antlr; 2 3 8 9 abstract class BlockWithImpliedExitPath extends AlternativeBlock { 10 protected int exitLookaheadDepth; 14 protected Lookahead[] exitCache = new Lookahead[grammar.maxk + 1]; 15 16 public BlockWithImpliedExitPath(Grammar g) { 17 super(g); 18 } 19 20 public BlockWithImpliedExitPath(Grammar g, Token start) { 21 super(g, start, false); 22 } 23 } 24 | Popular Tags |