Ejemplo n.º 1
0
 private void backPath(Lexeme l, LexemePath option) {
   while (option.checkCross(l)) {
     option.removeTail();
   }
 }