コード例 #1
0
ファイル: Sintatico.cs プロジェクト: vnoan/Compilador
 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");
     }
 }
コード例 #2
0
ファイル: Sintatico.cs プロジェクト: vnoan/Compilador
 private bool Reconhece(String token)
 {
     if (tk.Descricao == token)
     {
         tk = Lex.NextToken();
         return(true);
     }
     else
     {
         return(false);
     }
 }