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