Package sintatico.maquinas

Examples of sintatico.maquinas.MaquinaPrograma


   */
  public AnalisadorSintatico(String tabelaPrograma, String tabelaExpressao, String tabelaComando,
      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
View Full Code Here

TOP

Related Classes of sintatico.maquinas.MaquinaPrograma

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.