1 package persistence.antlr; 2 3 8 9 import persistence.antlr.collections.impl.BitSet; 10 11 interface ToolErrorHandler { 12 13 14 22 public void warnAltAmbiguity( 23 Grammar grammar, 24 AlternativeBlock blk, 25 boolean lexicalAnalysis, 26 int depth, 27 Lookahead[] sets, 28 int altIdx1, 29 int altIdx2 30 ); 31 32 39 public void warnAltExitAmbiguity( 40 Grammar grammar, 41 BlockWithImpliedExitPath blk, 42 boolean lexicalAnalysis, 43 int depth, 44 Lookahead[] sets, 45 int altIdx 46 ); 47 } 48 | Popular Tags |