示例#1
0
 public void AgregarGranError(Error.Tipo tipo)
 {
     SalidaErrores.AddLast(new Error(tipo, auxlex, fila, columna));
     auxlex = "";
     estado = 0;
 }
示例#2
0
 public void AgregarError(Error.Tipo tipo, Char error)
 {
     SalidaErrores.AddLast(new Error(tipo, "" + error, fila, columna));
     auxlex = "";
     estado = 0;
 }