Package sintatico.maquinas

Examples of sintatico.maquinas.MaquinaComando


      String arquivoFonte, boolean estatisticasCompletas, boolean estatisticasPilha,
      boolean codigoFonte, boolean estatisticasTokens) throws FileNotFoundException{

    maquinaPrograma = new MaquinaPrograma(this,tabelaPrograma);
    maquinaExpressao = new MaquinaExpressao(this,tabelaExpressao);
    maquinaComando = new MaquinaComando(this,tabelaComando);

    statusAtual = new Status(maquinaPrograma,Constantes.ESTADO_INICIAL);
//    statusAtual = new Status(maquinaExpressao,Constantes.ESTADO_INICIAL); // teste da maq. de ea
//    statusAtual = new Status(maquinaComando,Constantes.ESTADO_INICIAL); // teste da maq. de cmd 
    pilhaStatus = new Stack<Status>();
View Full Code Here

TOP

Related Classes of sintatico.maquinas.MaquinaComando

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.