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