Ejemplo n.º 1
0
 public bool IsOperator(IntegerList oper_list, out int op)
 {
     op = 0;
     int index = oper_list.IndexOf(this.curr_token.id);
     if (index >= 0)
     {
         op = oper_list[index];
         this.Call_SCANNER();
         return true;
     }
     return false;
 }