예제 #1
0
 public static void Main(string[] args)
 {
     string       kaynakKodu = File.ReadAllText("kaynak.txt");
     Lexer        l          = new Lexer(kaynakKodu);
     TokenListesi tl         = l.TokenListesiAl();
     List <Durum> agac       = new Parser(tl).AgacAl();
 }
예제 #2
0
 public Parser(TokenListesi tl)
 {
     this.tl = tl;
     parseEt();
 }