Beispiel #1
0
 public void Deconstruct(out Scir address)
 {
     address = Address;
 }
Beispiel #2
0
 public Store(Type type, Scir address, Scir value) : base(type)
 {
     Address = address;
     Value   = value;
 }
Beispiel #3
0
 public void Deconstruct(out Scir value)
 {
     value = Value;
 }
Beispiel #4
0
 public Load(Type type, Scir address) : base(type)
 {
     Address = address;
 }
Beispiel #5
0
 public void Deconstruct(out BinaryOp op, out Scir left, out Scir right)
 {
     op    = Op;
     left  = Left;
     right = Right;
 }
Beispiel #6
0
 public Cast(Type type, Scir value) : base(type)
 {
     Value = value;
 }
Beispiel #7
0
 public BinaryOperation(Type type, BinaryOp op, Scir left, Scir right) : base(type)
 {
     Op    = op;
     Left  = left;
     Right = right;
 }
Beispiel #8
0
 public void Deconstruct(out UnaryOp op, out Scir value)
 {
     op    = Op;
     value = Value;
 }
Beispiel #9
0
 public UnaryOperation(Type type, UnaryOp op, Scir value) : base(type)
 {
     Op    = op;
     Value = value;
 }
Beispiel #10
0
 public void Deconstruct(out Scir address, out Scir value)
 {
     address = Address;
     value   = Value;
 }
Beispiel #11
0
 public void Stmt(Scir stmt) => throw new NotImplementedException();