Skip to content

Commit

Permalink
fix: acesso a variavel atualizada de classe
Browse files Browse the repository at this point in the history
  • Loading branch information
areamluersen committed Jun 27, 2021
1 parent c0952ea commit f24a3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/br/univali/comp/javacc/Linguagem2021-1.jj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import br.univali.comp.virtualmachine.Instruction;
public class Sintatico {
private StringBuilder tokens = new StringBuilder();
private List<String> lexicalErrors = new ArrayList<String>();
private List<String> syntacticErrors = new ArrayList<String>();
private static List<String> syntacticErrors = new ArrayList<String>();
private List<String> semanticErrors = new ArrayList<String>();
private Boolean hasLexicalErrors = false;
public AcoesSemanticas acoesSemanticas = new AcoesSemanticas();
Expand Down

0 comments on commit f24a3ec

Please sign in to comment.