Skip to content

Commit

Permalink
Corrige erros dos testes unitários
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelrvg committed Jan 27, 2024
1 parent 46ea05d commit 5dc7ed3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -696,13 +696,13 @@ export class AvaliadorSintaticoPortugolStudio extends AvaliadorSintaticoBase {
tipo = this.avancarEDevolverAnterior();
}

identificador = this.consumir(tiposDeSimbolos.IDENTIFICADOR, 'Esperado nome da constante.'));
identificador = this.consumir(tiposDeSimbolos.IDENTIFICADOR, 'Esperado nome da constante.');

this.consumir(tiposDeSimbolos.IGUAL, "Esperado '=' após identificador em instrução 'constante'.");

const inicializador = this.expressao();

return new Const(identificador, inicializador, tipo.lexema as TiposDadosInterface));
return new Const(identificador, inicializador, tipo.lexema as TiposDadosInterface);
}

resolverDeclaracaoForaDeBloco(): Declaracao | Declaracao[] | Construto | Construto[] | any {
Expand Down

0 comments on commit 5dc7ed3

Please sign in to comment.