Example #1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            // CODIGO
            AnalisisLexico   analex = new AnalisisLexico();
            ComponenteLexico tmp    = analex.analizar();

            while (!"@EOF@".Equals(tmp.Lexema))
            {
                MessageBox.Show(tmp.Imprimir());
                tmp = analex.analizar();
            }
            textBoxPorConsola.Clear();
        }