4 writes to ILOffset
illink (4)
Linker\MessageOrigin.cs (4)
49
ILOffset
= UnsetILOffset;
59
ILOffset
= ilOffset ?? UnsetILOffset;
68
ILOffset
= other.ILOffset;
77
ILOffset
= ilOffset;
12 references to ILOffset
illink (12)
Linker\MessageOrigin.cs (12)
68
ILOffset = other.
ILOffset
;
88
var offset =
ILOffset
== UnsetILOffset ? method.DebugInformation.SequencePoints[0].Offset :
ILOffset
;
122
(FileName, Provider, SourceLine, SourceColumn,
ILOffset
) == (other.FileName, other.Provider, other.SourceLine, other.SourceColumn, other.
ILOffset
);
125
public override int GetHashCode () => (FileName, Provider, SourceLine, SourceColumn,
ILOffset
).GetHashCode ();
143
if (
ILOffset
!= UnsetILOffset && other.
ILOffset
!= UnsetILOffset)
144
return
ILOffset
.CompareTo (other.
ILOffset
);
146
return
ILOffset
== UnsetILOffset ? (other.
ILOffset
== UnsetILOffset ? 0 : 1) : -1;