Package br.furb.compiladores.compilador.gals

Examples of br.furb.compiladores.compilador.gals.Lexico


  }
 
  private void coisar() {
    jTextAreaConsole.setText(null);

    Lexico lexico = new Lexico();
    LineNumberReader reader = new LineNumberReader(
        new StringReader(jTextAreaEditor.getText()));
    lexico.setInput(reader);
   
    Sintatico sintatico = new Sintatico();
    Semantico semantico = new Semantico("teste");

    try {
View Full Code Here


  public void compilar() throws Exception {
    StringBuilder resultado = new StringBuilder();

    try {
      Lexico lexico = new Lexico();
      lexico.setInput(getCodigo());
      Sintatico sintatico = new Sintatico();
      Semantico semantico = new Semantico();
      sintatico.parse(lexico, semantico);
      this.codigoObjeto = semantico.getAreaDeInstrucoes();
      resultado.append("programa compilado com sucesso");
View Full Code Here

 
  public void gerarCodigo() throws ParseException {
    StringBuilder resultado = new StringBuilder();

    try {
      Lexico lexico = new Lexico();
      lexico.setInput(getCodigo());
      Sintatico sintatico = new Sintatico();
      Semantico semantico = new Semantico(this.nome);
      sintatico.parse(lexico, semantico);
      this.codigoObjeto = semantico.getAreaDeInstrucoes();
      resultado.append("c�digo objeto gerado com sucesso");
View Full Code Here

TOP

Related Classes of br.furb.compiladores.compilador.gals.Lexico

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.