예제 #1
0
 public Return(VExpr vret)
 {
     vreturn = vret;
 }
예제 #2
0
 public ConManVExpr(VExpr Command, VExpr Data)
 {
     this.Command = Command;
     this.Data    = Data;
 }
예제 #3
0
 public ArithVSExpr(VExpr V1, ArithSpec Op, SExpr S2)
 {
     this.V1 = V1;
     this.Op = Op;
     this.S2 = S2;
 }
예제 #4
0
 public ScammerVExpr(VExpr Command, VExpr Data)
 {
     this.Command = Command;
     this.Data    = Data;
 }
예제 #5
0
 public ArithVExpr(VExpr V1, ArithSpec Op, VExpr V2)
 {
     this.V1 = V1;
     this.Op = Op;
     this.V2 = V2;
 }