public Sintatico(Lexico lx) { this.inVar = false; this.inConst = false; this.tempVars = new List <string>(); this.Sem = new Semantico(); this.Lex = lx; this.tk = lx.NextToken(); if (tk == null) { Console.WriteLine("Arquivo vazio"); } }
private bool Reconhece(String token) { if (tk.Descricao == token) { tk = Lex.NextToken(); return(true); } else { return(false); } }