*/
public boolean deterministicImpliedPath(BlockWithImpliedExitPath blk) {
/** The lookahead depth for this decision considering implied exit path */
int k;
boolean det = true;
Vector alts = blk.getAlternatives();
int nalts = alts.size();
currentBlock.altj = -1; // comparing against implicit optional/exit alt
if (DEBUG_ANALYZER) System.out.println("deterministicImpliedPath");
for (int i = 0; i < nalts; i++) { // check follow against all alts
Alternative alt = blk.getAlternativeAt(i);