while ((aux = br.readLine()).compareTo("}") != 0) {
if (!aux.startsWith("//") && aux.length() != 0) {
split = aux.split(" ::= ");
VN antecedente = new VN(split[0]);
List<V> consecuentes = analizarConsecuentes(split[1], listaVN, listaVT);
producciones.add(new Production(antecedente, consecuentes));
}
}
//Tratamos S.