示例#1
0
 public Compound(Istmt first, Istmt second)
 {
     this.first  = first;
     this.second = second;
 }
示例#2
0
 public If(Exp e, Istmt t, Istmt el)
 {
     this.e     = e;
     this.thenS = t;
     this.elseS = el;
 }
示例#3
0
        public void oneStep()
        {
            Istmt s = stk.pop();

            s.execute(this);
        }