Ejemplo n.º 1
0
 public Analizer(DataGridView datagridview, PileTokens pileTokens)
 {
     this.pile         = new List <string>();
     this.dataGridView = datagridview;
     this.pileTokens   = pileTokens.getPileTokens();
     getTableToSet();
 }
 public ControlCompile(RichTextBox richTextbox, DataGridView datagridview, ref int numberErrors)
 {
     this.richTextBox  = richTextbox;
     this.dataGridView = datagridview;
     this.numberErrors = numberErrors;
     this.syA          = new SyntacticAnalizer(datagridview);
     this.pileTokens   = new PileTokens();
     this.numberRow    = 0;
 }