Example #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;
 }
Example #2
0
 internal ILValue LoadValueTypeFieldAddress(AddressILValue objValue, DmdFieldInfo field)
 {
     Debug.Assert(field.ReflectedType.IsValueType);
     return(new ValueTypeFieldAddress(this, objValue, field));
 }
Example #3
0
 public override bool Equals(AddressILValue other) =>
 other is ByRefILValueImpl addr &&
Example #4
0
 public abstract bool Equals(AddressILValue other);
Example #5
0
 public override bool Equals(AddressILValue other) =>
 other is ArgumentAddress addr &&
Example #6
0
 public override bool Equals(AddressILValue other) =>
 other is LocalAddress addr &&
Example #7
0
 public override bool Equals(AddressILValue other) =>
 other is ValueTypeFieldAddress addr &&
Example #8
0
 public override bool Equals(AddressILValue other) =>
 other is StaticFieldAddress addr &&