Exemplo n.º 1
0
 public FourExp(FourExpOperation op, string arg1, string arg2, string arg3)
 {
     this.op = op;
     this.arg1 = arg1;
     this.arg2 = arg2;
     this.arg3 = arg3;
 }
Exemplo n.º 2
0
 public FourExp(FourExpOperation op, string arg1, string arg2, string arg3)
 {
     this.op   = op;
     this.arg1 = arg1;
     this.arg2 = arg2;
     this.arg3 = arg3;
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
        }
Exemplo n.º 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);
        }