Skip to content

Commit

Permalink
Resolve bug interpolacao de textos (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelrvg authored Jan 28, 2024
1 parent 014f72f commit b865051
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion fontes/interpretador/interpretador-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,10 @@ export class InterpretadorBase implements InterpretadorInterface {
if (elemento?.valor?.tipo === tipoDeDadosDelegua.LOGICO) {
textoFinal = textoFinal.replace('${' + elemento.variavel + '}', this.paraTexto(elemento?.valor?.valor));
} else {
const valor = elemento?.valor?.hasOwnProperty('valor') ? elemento?.valor.valor : elemento?.valor
textoFinal = textoFinal.replace(
'${' + elemento.variavel + '}',
elemento?.valor?.valor || elemento?.valor
`${this.paraTexto(valor)}`
);
}
});
Expand Down
5 changes: 4 additions & 1 deletion testes/interpretador.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ describe('Interpretador', () => {
'somar: 8 = 8',
'somar com ponto flutuante: 9 = 9',
'2',
'Valor: falso e verdadeiro'
'Valor: falso e verdadeiro',
"0"
]
const retornoLexador = lexador.mapear([
"var comidaFavorita = 'strogonoff'",
Expand All @@ -97,6 +98,8 @@ describe('Interpretador', () => {
"escreva('${4 - 2 / 1}');",
"var logico1 = falso",
"var logico2 = verdadeiro",
"var zero = 0",
"escreva(\"${zero}\")",
"escreva('Valor: ${logico1} e ${logico2}')",
], -1);
const retornoAvaliadorSintatico = avaliadorSintatico.analisar(retornoLexador, -1);
Expand Down

0 comments on commit b865051

Please sign in to comment.