Ejemplo n.º 1
0
 public Variable(string name, LocalBuilder lb, Literal value)
 {
     this.name = name;
     this.lb = lb;
     this.value = value;
 }
Ejemplo n.º 2
0
 public Print(Literal toPrint)
 {
     this.toPrint = toPrint;
 }
Ejemplo n.º 3
0
 public BinaryOp(Literal left, string op, Literal right)
 {
     this.left = (int)left.val();
     this.op = op;
     this.right = (int)right.val();
 }
Ejemplo n.º 4
0
 public VarDeclaration(string name, Literal value)
 {
     this.name = name;
     this.value = value;
     this.variable = null;
 }
Ejemplo n.º 5
0
 public Write(Literal toWrite)
 {
     this.toWrite = toWrite;
 }