Пример #1
0
 public FourExp(FourExpOperation op, string arg1, string arg2, string arg3)
 {
     this.op = op;
     this.arg1 = arg1;
     this.arg2 = arg2;
     this.arg3 = arg3;
 }
Пример #2
0
 public FourExp(FourExpOperation op, string arg1, string arg2, string arg3)
 {
     this.op   = op;
     this.arg1 = arg1;
     this.arg2 = arg2;
     this.arg3 = arg3;
 }
Пример #3
0
 public void Push(int index, FourExpOperation op, string arg1, string arg2, string result)
 {
     FourExp fourExp = new FourExp(op, arg1, arg2, result);
     this.Push(index, fourExp);
 }
Пример #4
0
 public void Push(int index, FourExpOperation op, string arg1, string arg2, int nextFourExp)
 {
     FourExp fourExp = new FourExp(op, arg1, arg2, nextFourExp);
     this.Push(index, fourExp);
 }
Пример #5
0
        public void Push(int index, FourExpOperation op, string arg1, string arg2, string result)
        {
            FourExp fourExp = new FourExp(op, arg1, arg2, result);

            this.Push(index, fourExp);
        }
Пример #6
0
        public void Push(int index, FourExpOperation op, string arg1, string arg2, int nextFourExp)
        {
            FourExp fourExp = new FourExp(op, arg1, arg2, nextFourExp);

            this.Push(index, fourExp);
        }