Exemplo n.º 1
0
 public ValueTypeFieldAddress(DebuggerRuntimeImpl runtime, AddressILValue objValue, DmdFieldInfo field)
     : base(runtime, field.FieldType)
 {
     Debug.Assert(field.ReflectedType.IsValueType);
     this.objValue = objValue;
     this.field    = field;
 }
Exemplo n.º 2
0
 internal ILValue LoadValueTypeFieldAddress(AddressILValue objValue, DmdFieldInfo field)
 {
     Debug.Assert(field.ReflectedType.IsValueType);
     return(new ValueTypeFieldAddress(this, objValue, field));
 }
Exemplo n.º 3
0
 public override bool Equals(AddressILValue other) =>
 other is ByRefILValueImpl addr &&
Exemplo n.º 4
0
 public abstract bool Equals(AddressILValue other);
Exemplo n.º 5
0
 public override bool Equals(AddressILValue other) =>
 other is ArgumentAddress addr &&
Exemplo n.º 6
0
 public override bool Equals(AddressILValue other) =>
 other is LocalAddress addr &&
Exemplo n.º 7
0
 public override bool Equals(AddressILValue other) =>
 other is ValueTypeFieldAddress addr &&
Exemplo n.º 8
0
 public override bool Equals(AddressILValue other) =>
 other is StaticFieldAddress addr &&