-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* 🐛 corrigindo mensagem de erro com reais com virgulas (fix #308) * 🐛 corrigindo outras possibilidades * verificando novas possibilidades de erros * resolvendo retorno de reais com virgula
- Loading branch information
1 parent
05f9bdc
commit baffee2
Showing
5 changed files
with
251 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...univali/portugol/nucleo/analise/sintatica/erros/ErroChaveDeVetorMatrizMalPosicionada.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package br.univali.portugol.nucleo.analise.sintatica.erros; | ||
|
||
import br.univali.portugol.nucleo.analise.sintatica.AnalisadorSintatico; | ||
import br.univali.portugol.nucleo.mensagens.ErroSintatico; | ||
|
||
/** | ||
* Erro gerado pelo analisador sintático quando uma expressão lógica ou aritmética está | ||
* incompleta. | ||
* <p> | ||
* Exemplo: | ||
* <code><pre> | ||
* | ||
* funcao exemploExpressaoIncompleta() | ||
* { | ||
* inteiro var1 = 23 + // Gera este erro | ||
* inteiro var2 = ( + 12) // Gera este erro | ||
* | ||
* se (var 1 < ) // Gera este erro | ||
* { | ||
* | ||
* } | ||
* } | ||
* | ||
* </pre></code> | ||
* | ||
* @author Luiz Fernando Noschang | ||
* @version 1.0 | ||
* | ||
* @see AnalisadorSintatico | ||
*/ | ||
|
||
public final class ErroChaveDeVetorMatrizMalPosicionada extends ErroSintatico | ||
{ | ||
/** | ||
* | ||
* @param linha a linha onde o erro ocorreu. | ||
* @param coluna a coluna onde o erro ocorreu. | ||
* @since 1.0 | ||
*/ | ||
public ErroChaveDeVetorMatrizMalPosicionada(int linha, int coluna) | ||
{ | ||
super(linha, coluna,"ErroSintatico.ErroExpressaoIncompleta"); | ||
} | ||
|
||
/** | ||
* {@inheritDoc } | ||
*/ | ||
@Override | ||
protected String construirMensagem() | ||
{ | ||
return "O formato de Vetor/Matriz está errado. As chaves devem ser posicionadas no nome da variavel. \nex: inteiro a[] = {2, 3}"; | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
.../src/main/java/br/univali/portugol/nucleo/analise/sintatica/erros/ErroRealComVirgula.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package br.univali.portugol.nucleo.analise.sintatica.erros; | ||
|
||
import br.univali.portugol.nucleo.analise.sintatica.AnalisadorSintatico; | ||
import br.univali.portugol.nucleo.mensagens.ErroSintatico; | ||
|
||
/** | ||
* Erro gerado pelo analisador sintático quando uma expressão lógica ou aritmética está | ||
* incompleta. | ||
* <p> | ||
* Exemplo: | ||
* <code><pre> | ||
* | ||
* funcao exemploExpressaoIncompleta() | ||
* { | ||
* inteiro var1 = 23 + // Gera este erro | ||
* inteiro var2 = ( + 12) // Gera este erro | ||
* | ||
* se (var 1 < ) // Gera este erro | ||
* { | ||
* | ||
* } | ||
* } | ||
* | ||
* </pre></code> | ||
* | ||
* @author Luiz Fernando Noschang | ||
* @version 1.0 | ||
* | ||
* @see AnalisadorSintatico | ||
*/ | ||
|
||
public final class ErroRealComVirgula extends ErroSintatico | ||
{ | ||
/** | ||
* | ||
* @param linha a linha onde o erro ocorreu. | ||
* @param coluna a coluna onde o erro ocorreu. | ||
* @since 1.0 | ||
*/ | ||
public ErroRealComVirgula(int linha, int coluna) | ||
{ | ||
super(linha, coluna,"ErroSintatico.ErroExpressaoIncompleta"); | ||
} | ||
|
||
/** | ||
* {@inheritDoc } | ||
*/ | ||
@Override | ||
protected String construirMensagem() | ||
{ | ||
return "A expressão foi formada utilizando vírgulas. Valores reais devem ser expressados utilizando pontos. ex: 2.75 "; | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
.../univali/portugol/nucleo/analise/sintatica/erros/ErroSimboloFaltandoOuRealComVirgula.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package br.univali.portugol.nucleo.analise.sintatica.erros; | ||
|
||
import br.univali.portugol.nucleo.analise.sintatica.AnalisadorSintatico; | ||
import br.univali.portugol.nucleo.mensagens.ErroSintatico; | ||
|
||
/** | ||
* Erro gerado pelo analisador sintático quando o nome do símbolo não é informado | ||
* na declaração. | ||
* <p> | ||
* Exemplo: | ||
* <code><pre> | ||
* | ||
* /* | ||
* * Esta declaração de função gera erro, pois o nome do | ||
* * primeiro parãmetro está faltando. | ||
* */ | ||
* | ||
* funcao exemploSimboloFaltando(inteiro , real param2) | ||
* { | ||
* inteiro = 56 // Esta declaração de variável também gera erro, pois falta o nome da variável | ||
* } | ||
* | ||
* </pre></code> | ||
* | ||
* @author Luiz Fernando Noschang | ||
* @version 1.0 | ||
* | ||
* @see AnalisadorSintatico | ||
*/ | ||
public final class ErroSimboloFaltandoOuRealComVirgula extends ErroSintatico | ||
{ | ||
private String contexto; | ||
private String codigo = "ErroSintatico.ErroNomeSimboloEstaFaltando."; | ||
|
||
/** | ||
* | ||
* @param linha a linha onde o erro ocorreu. | ||
* @param coluna a coluna onde o erro ocorreu. | ||
* @param contexto o contexto em que o analisador sintático se encontrava no momento do erro. | ||
* @since 1.0 | ||
*/ | ||
public ErroSimboloFaltandoOuRealComVirgula(int linha, int coluna, String contexto) | ||
{ | ||
super(linha, coluna); | ||
this.contexto = contexto; | ||
} | ||
|
||
/** | ||
* {@inheritDoc } | ||
*/ | ||
@Override | ||
protected String construirMensagem() | ||
{ | ||
if (contexto.equals("parametro")) | ||
{ | ||
super.setCodigo(codigo+"1"); | ||
return "Uma vírgula foi mal colocada. O nome do parâmetro da função não foi informado ou o número real não foi escrito com pontos."; | ||
} | ||
else if (contexto.equals("declaracaoFuncao")) | ||
{ | ||
super.setCodigo(codigo+"2"); | ||
return "Uma vírgula foi mal colocada. O nome da função não foi informado ou o número real não foi escrito com pontos."; | ||
} | ||
else | ||
{ | ||
super.setCodigo(codigo+"3"); | ||
return "Uma vírgula foi mal colocada. O nome da variável não foi informado ou o número real não foi escrito com pontos."; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters